body {
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* min-height: 100vh; */
  justify-content: center;
}
.mobile-wrapper {
  max-width: 390px;
  width: 100%;
  background-color: #1c1c1e;
  border-radius: 10px;
  border: 1px solid #f3eeee;
}
.navbar{
  border-radius: 10px;
}
.bottom-container {
  padding: 0 20px 20px 20px;
}
.ground-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  padding:5px 10px;
  background: #1f2228;
  border-left: 5px solid #ffffff;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
}
.btn-primary1{
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff; 
  background-color: #3d8bfd;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary1:hover {
  background-color: #2a6bbf;
}
.tournamentbox{
  display: flex;
  justify-content: end;
}
#tournamentImageModal .modal-body img {
  max-height: 70vh;
  object-fit: contain;
}
#tournamentImageModal .modal-title{
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2228;
}
.modal-title{
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.dropdownposter{
  border: 1px solid gray;
    border-radius: 7px;
}
#selectDateBtn{
   border: 1px solid #007bff;
    border-radius: 7px;
}
.section-title {
  color: #ffffff;
  font-weight: 600;

  margin-bottom: 6px;
}
.date-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected-date-box {
  background-color: #222;
  color: #ffffff;
  padding: 10px 15px;
  border: 1px solid #3d8bfd;
  border-radius: 8px;
  font-weight: bold;
  flex-grow: 1;
}

.calendar-icon {
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border: 1px solid #3d8bfd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.calendar-icon::before {
  content: "📅";
  font-size: 1.2rem;
}

.hidden-date {
  opacity: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  left: 0;
  top: 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.slot-btn {
  padding: 10px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.available {
  background-color: #2eb22c;
}

.few-left {
  background-color: #ffbf00;
}

.booked {
  background-color: #dc143c;
  pointer-events: none;
}

.bookedtext {
  text-align: center;
  color: #ffffff;
  font-size: 0.85rem;
  margin-top: 16px;
  text-decoration: none;
  
}

.bookedtext:hover {
  color: #ffffff;
  text-decoration: underline;
}
.map-wrapper {
  margin: 10px;
  border-radius: 10px;
  border-bottom: 4px solid #ffffff;
}
.map-container iframe{
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
}

/* signup page css  */
.signup-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    padding: 40px 15px;
  }
  .signup-box {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  }
  .signup-box h2 {
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
  }
  .signupform input::placeholder{
    color: #888;
  }


  /* login page cass */

  