/* Memperbesar ukuran modal */
.modal-lg {
  max-width: 800px;
}

/* Styling untuk modal konten */
.custom-modal {
  background: #252525; /* Background modal lebih gelap */
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  color: #f8f9fa; /* Warna teks lebih cerah */
  overflow: hidden; /* Tambahkan ini agar konten tidak keluar dari modal */
}

/* Gambar turnamen full width dan full height */
.tournament-image {
  width: 100%;
  object-fit: cover; /* Pastikan gambar proporsional tanpa terpotong */
  object-position: center; /* Pusatkan gambar */
}

.p-4 {
  padding: 1.5rem !important;
}

.tournament-title {
  font-size: 24px;
  font-weight: bold;
}

.tournament-dates,
.tournament-registration,
.tournament-prizepool,
.tournament-htm,
.tournament-platform {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Styling untuk tanggal dan deskripsi */
.tournament-date {
  font-size: 1.1rem;
  color: #adb5bd;
}

.tournament-description {
  font-size: 1rem;
  color: #ced4da;
}

body.modal-open {
  overflow-y: auto !important; /* Aktifkan scroll saat modal terbuka */
}

/* Menghilangkan border pada modal footer */
.modal-footer {
  border-top: none;
}
