main{
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.card {
  max-width: 800px;
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.card-title {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.card-content {
  font-size: 18px;
  line-height: 1.5;
  margin-left: 40px;
  margin-right: 40px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
  height: 200px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  height: 200px;
}

.carousel-item img {
  display: block;
  margin: 0 auto;
  height: 253%;
  width: 89%;
  object-fit: contain;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(120, 120, 120, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: background 0.3s ease;
}

.carousel-control:hover {
  background: rgba(120, 120, 120, 0.9);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.table th,
.table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.table th {
  text-align: left;
  background-color: #f2f2f2;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.image-container .image-item {
  max-width: 45%;
  height: auto;
  margin: 0 10px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: block;
  margin: 15% auto;
  max-width: 80%;
}

.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
