* {
   list-style: none;
    text-decoration: none;
        box-sizing: border-box;
}
.header-container {
  position: fixed;
  display: grid;
  grid-template-columns: 12.5vw 12.5vw 50vw 12.5vw 12.5vw;
  grid-template-rows: 50% 50%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0; 
  min-width: 100vw;
  max-width: 100vw;
  min-height: 70px;
  max-height: 70px;
  z-index: 10;
  background-color: rgb(16, 39, 159);
}
.background-full-image {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px - 10vh);
  max-height: 100vh;
  z-index: -100;
  pointer-events: none;
  margin: 0;
  padding: 0;
  display: block;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  pointer-events: none;
}
.banner-left {
  grid-column: 1 / 3;
  place-self: center;
  place-content: center;
  min-width: 100%;
  max-height: 100%;
}
.banner-left li {
  display: grid;
  grid-template-rows: auto;
}

.header-search-container {
  grid-column: 4 / 6;
  grid-row: 1 / 3;

  place-self: center;
  place-content: center;
  min-width: 100%;
  max-height: 10vh;

}
.header-search-container input {
  place-self: center;
  border-radius: 50px;
  min-width: 75%;
  max-height: 10vh;
  margin: 0;
  padding: 0;
  height: 2rem;
}
.header-search-container text {
  place-content: center;
}
.header-search-container button {
  position: absolute;
  right: 25px;
  background-color: white;
  color: black;
  border-radius: 50px;
  height: 100%;
  aspect-ratio: 1;
}
.search-input {
  flex: 1;
}
.header-search-container form {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.title_image{
  grid-column: 2 / 5;
  grid-row: 1 / 3;
  place-self: center;
  place-self: center;
  min-width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.title_image img {
  place-self: center;
  place-content: center;
  max-height: 10vh;
  min-height: 8vh;
  width: 100%;
}
.site-title {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman';
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: normal;
  background: linear-gradient(135deg, rgb(255, 0, 255), rgb(36, 138, 240));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,1)); /* cleaner than text-shadow */
  display: inline-block;
}
.set-calendar-body-container {
display: grid;
grid-template-rows: 10vh auto auto auto 10vh;
max-width: 90vw;
min-height: 100vh;
place-self: center;
place-content: center;
gap: 3rem;
    border-radius: 15px;
}
.set-calendar-container {
  grid-row: 3;
    max-width: 99vw;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  overflow-x: auto;
}

/* Make .glow-frame not overflow parent */
.set-calendar-container .glow-frame {
  max-width: 100%;
  overflow-x: auto;
  padding: 0.5rem 0;
}

/* Room row: inputs/buttons stay inside container, wrap on small screens */
.set-calendar-container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

/* Make each input/button in .row shrink/grow as needed */
.set-calendar-container .row > * {
  flex: 1 1 100px;
  min-width: 0;
  max-width: 100%;
}

/* Inputs and selects should never overflow container */
.set-calendar-container input,
.set-calendar-container select {
  width: 100%;
  max-width: 100%;
}

/* Responsive table: never overflow container, text wraps if needed */
.set-calendar-container table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.set-calendar-container th, .set-calendar-container td {
  padding: 6px 4px;
  text-align: left;
  word-break: break-word;
  white-space: normal;
  max-width: 120px;
}

/* Tabs and buttons never overflow */
.set-calendar-container .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.set-calendar-container .tab-btn {
  flex: 1 1 120px;
  min-width: 0;
  max-width: 100%;
}

/* Section cards inside the container always fit */
.set-calendar-container .card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px #0001;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
#set-calendar-container .card,
.set-calendar-container .card {
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px 0;
  display: block;
}
.set-calendar-container .card.row {
  flex-direction: column !important;
  align-items: flex-start !important;
}
.set-calendar-container .card.row select,
.set-calendar-container .card.row .muted {
  width: 100%;
  margin-bottom: 8px;
}
#set-calendar-container .row input,
#set-calendar-container .row button,
.set-calendar-container .row input,
.set-calendar-container .row button {
  width: 100% !important;
  margin-bottom: 8px;
  box-sizing: border-box;
}
/* ---
 Portrait mode: Responsive Rooms Table --- */
.set-calendar-container #rooms-table-wrap table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
}

/* Stack thead cells for readability */
.set-calendar-container #rooms-table-wrap th {
  font-size: 0.95rem;
  padding: 8px 4px;
  text-align: left;
  word-break: break-word;
}

/* Stack each row as a card on small screens */
.set-calendar-container #rooms-table-wrap td {
  padding: 6px 4px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #eee;
}

/* Make the table look more like a list/cards */
.set-calendar-container #rooms-table-wrap tr {
  display: block;
  margin-bottom: 12px;
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 1px 3px #0001;
  padding: 8px 0;
}

/* Hide thead visually (labels will be added via :before) */
.set-calendar-container #rooms-table-wrap thead {
  display: none;
}

/* Add labels before each cell when stacked */
.set-calendar-container #rooms-table-wrap td:nth-child(1):before { content: "Modify Room Name: "; font-weight: bold; }
.set-calendar-container #rooms-table-wrap td:nth-child(2):before { content: "Modify Capacity: "; font-weight: bold; }
.set-calendar-container #rooms-table-wrap td:nth-child(3):before { content: "Actions: "; font-weight: bold; }

/* Buttons full width, more touchable */
.set-calendar-container #rooms-table-wrap .btn,
.set-calendar-container #rooms-table-wrap button {
  width: 100%;
  margin: 4px 0;
  font-size: 1rem;
  border-radius: 6px;
  padding: 10px 0;
  display: block;
}

/* Inputs full width */
.set-calendar-container #rooms-table-wrap input[type="text"],
.set-calendar-container #rooms-table-wrap input[type="number"] {
  width: 100%;
  margin: 4px 0;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Add Room row controls more readable */
.set-calendar-container .row {
  display: flex;
  flex-direction: column !important;
  gap: 10px;
  width: 100%;
}

.set-calendar-container #new-room-name,
.set-calendar-container #new-room-capacity,
.set-calendar-container #btn-add-room {
  width: 100%;
  margin: 4px 0;
}
/* ------- MISSING FROM PORTRAIT CSS FOR venue-set-availability.php ------- */
/* Fix overly tall inputs/selects/buttons in .set-calendar-container */

.set-calendar-container input[type="text"],
.set-calendar-container input[type="number"],
.set-calendar-container select {
  height: 2.2rem;         /* Reasonable height */
  min-height: 2rem;
  max-height: 2.5rem;
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 6px;
}

.set-calendar-container button,
.set-calendar-container .btn,
.set-calendar-container #btn-add-room {
  height: 2.5rem;
  min-height: 2rem;
  max-height: 3rem;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  box-sizing: border-box;
  /* The following ensures it doesn't stretch vertically */
  line-height: 1.2;
}

.set-calendar-container select {
  /* Remove the big vertical padding browsers sometimes add on mobile */
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Tabs for switching calendar views */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tab-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.tab-btn.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* Modal popups (for editing/adding availability) */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal .panel {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 520px;
  width: 100%;
  border: 1px solid #ccc;
}
.modal h3 {
  margin: 0 0 8px;
}

/* Main calendar and controls */
.venue-admin-calendar .calendar {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 12px;
}
.venue-admin-calendar .cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.venue-admin-calendar .cal-controls button {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}
.venue-admin-calendar .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.venue-admin-calendar .cal-grid .weekday {
  font-weight: 700;
  text-align: center;
}
.venue-admin-calendar .day {
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 72px;
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
}
.venue-admin-calendar .day.muted {
  opacity: .5;
  cursor: default;
  background: #f3f4f6;
}
.venue-admin-calendar .badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}
.venue-admin-calendar .badge.available {
  background: #34d399;
  color: #064e3b;
}
.venue-admin-calendar .badge.unavailable {
  background: #fca5a5;
  color: #7f1d1d;
}
.venue-admin-calendar .badge.slots {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,.06);
  color: #111;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}

/* Slot editing rows in modals */
.slot-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
}
.slot-row input[type="time"] {
  width: 45%;
}

/* Utility classes (if missing) */
.grow {
  flex: 1;
}
.btn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.btn.primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.btn.danger {
  background: #b91c1c;
  color: #fff;
  border-color: #b91c1c;
}
.btn.small {
  padding: 4px 8px;
}
.spacer {
  height: 6px;
}
.muted {
  color: #6b7280;
}
.hidden {
  display: none !important;
}
 .venue-cancellation-policy {

      max-width: 80vw;
      justify-items: center;
      place-items: center;
      grid-row: 3;
    }
  
.body-menu-container {
  justify-self: center;
  display: grid;
  grid-row: 2;
  width: 80vw;
  height: 100%;
}
body {
  display: grid;
  position: absolute;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  place-content: center;
  text-align: center;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  
  color: black;
  background-color: white;
  
}
.body-container {

    place-self: center;
    max-width: 100vw;
min-height: 100vh;
 display: grid;
 grid-template-rows: 10vh  auto auto auto auto auto auto 15vh;
 gap: 2rem;
}


.main-page-image {
  max-width: 100vw;
  position: absolute;
  top: 10vh;

}
.main-page-image img {
  max-width: 100%;
}

.main-page-glow-frame {
  display: grid;
  text-align: top;
  border-radius: 10px;
  grid-template-columns: auto;
  
  max-width: 100%;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);  Glow effect */
  text-align: center; /* Center text */
   place-self: center;
  animation: glow 1.5s infinite alternate;
}

.main-page-glow-frame a {
  color: rgb(255, 0, 255);
}
.search-results {
  max-width: 100vw;;
}


.form.searchform {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  width: 100vw;
}
.nav-container {
  position: relative;
  display: flex;
  place-self: center;
  place-content: center;
  min-width: 100vw;
  max-width: 100vw;
  max-height: 100px;
  margin: 0;
  padding: 0;
  border: 0;
}

.user-id {
  display: inline-flex;
  max-width: 100vw;
}
.searchform {
  width: 100%;
}
.signin.container {
  
  flex: 25%;
  min-width: 100%;
  place-self: center;
  place-content: center;
  

}

.signin-banner-padding { 
  display: flex;
  flex: 25%;
  justify-content: right;
  list-style: none;
  margin: 0;
  padding: 0; 
 }

.signin-banner-padding img {
  align-self: center;
  display: flex;
  max-height: 100px;
}
.signin-banner img {
  position: relative;
  display: block;
  max-height: 100px;
}
.signin-banner a {
  width: 100%;
  justify-self: center;
  display: inline-flex;
  color: #0eb067;
}
h1 {
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}
h2 {
  margin: 0;
  padding: 0;
   place-self: center;
   font-size: 1rem;
   font-weight: 300;
   color: black;
}
h3 {
  place-self: center;
  font-size: 1 rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  color: black;
}
h4 {
  display: block;
  place-self: center;
font-size: 2rem;
height: 100%;

  margin: 0;
  padding: 0;
  border: 0;
}


h5 {
  margin: 0;
padding: 1rem;
  font-size: 2.5rem;
font-weight: 400;
 color: rgb(255, 0, 255);
}
h6 {
margin: 0;
padding: 0;
font-size: 4rem;
font-weight: 400;
  color: rgb(255, 0, 255);
  
}
p {
  font-size: 1.5 rem;
  text-align: center;
  
}



/*---------
.header-search-bar {
  width: 75%;
  flex: 25%;
  justify-self: center;
}  ---------------*/




.form-error {
  color: red;
}

.form-success {
  color: green;
}

.venue-signup-border {
  max-width: 50%;
}
.user-signup-border {
  justify-self: right;
  max-width: 50%;
}

/*-----------------------------------------------------------------------*/
.glow-container {
  /*----------------DONT PLACE PADDING HERE!!!!------------*/
  place-self: center;
  place-content: center;
  display: grid; /* Use Grid Layout */
  grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
  gap: 3rem;
  max-width: 80%;
  max-height: 80vh;
  margin-top: 10%;
  margin-bottom: 10%;
}

.glow-frame {
place-self: center;
  text-align: top;
  grid-template-columns: auto;
  
  max-width: 420px;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);  Glow effect */
  text-align: center; /* Center text */
background-color: white;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.glow-frame img {
  

  max-width: 100%;
  max-height: 100vh;
}
.glow-frame-text {
  background-color: none;
  font-size: 2rem;
  color: rgb(255, 0, 255);
  text-decoration: none;
}
.glow-frame a {
  text-decoration: none;
  display: grid;
}

/*-------------------------------------------------------------------------*/
.signup-login-two-columns-container {
 grid-row: 2;
  top: 10vh;
  bottom: 10vh;
  grid-template-rows: repeat(2);
  justify-self: center;
  display: grid;
  gap: 6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-height: 100%;
  max-width: 80%;

  
}
.signup-login-container {
position: absolute;
height: 100vh;
display: grid;
grid-template-rows: 10vh 1fr 10vh;
overflow: auto;
}
.signin-single {
  max-width: 20%;
  place-self: center;
  place-content: center;
}
.single-glow-frame {
  background-color: white;
  border-radius: 15px;
  min-width: 100%;
  max-width: 100%;
  
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);  Glow effect */
  text-align: center; /* Center text */

  animation: glow 1.5s infinite alternate;
}
.single-glow-frame form {
  place-self: center;
  width: 90%;
}

.single-glow-frame a {
  justify-self: center;
  max-width: 0px;
}
.single-glow-frame img {
  display: grid;
  place-self: center;
  width: 75%;
}
.single-glow-border {
  place-items: center;
  justify-self: center;
  place-items: center;
  display: grid; /* Use Grid Layout */
  min-width: 15vw;
  max-width: 15vw;
}
.glow-border-logout {
  place-items: center;
}
/*
.glow-frame-logout {
  border-radius: 15px;
  padding: 0.25rem;
  max-width: 10%;
  box-shadow: 0 0 10px #ffffffcc; /* Glow effect */
 /* text-align: center;  */                        /* Center text /*

  animation: glow 1.5s infinite alternate; 
}
*/

.grid-wrap-banner img {
  display: grid;
  max-height: 100%;
  height: 100%;
  max-width: 100%;
  place-self: center;
  place-content: center;
}



.signup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two equal columns */
  gap: 16px; /* Space between grid items */
}

form {
  width: 60%;

  font-family: Arial, Helvetica, sans-serif;

  flex-wrap: wrap;
  flex-direction: column;

  place-self: center;
  place-items: center;
}
.form-boarder {
  display: inline-flex;
  justify-self: center;
  max-width: 50%;
}


.login-status {
  
  position: relative;

place-self: center;
place-content: center;
  max-width: 100%;
  max-height: 100%;
 
}

.login-status li {

  position: inherit;
  font-size: 1.25rem;
  display: grid;
  grid-template-columns: auto;
  place-self: center;
  place-content: center;
  max-width: 100%;
  
}
.login-status li a {
  max-width: 100%;
   color: rgb(255, 0, 255);
}
.login-status text {
  place-self: center;
  max-width: 250px;
}
.login-status b {
  max-width: 100%;

}

.footer {
  position: fixed;
  grid-row: 3;
  bottom: 0;
  left: 0;
  place-content: center;
  max-height: 10vh;
  min-height: 10vh;
  width: 100vw;
  max-width: 100vw;
  text-align: center;
  color: #fff;
  background-color: rgb(16, 39, 159);
  z-index: 1000;
}
#footer {
  
  bottom: 0;
  width: 100%;
}
.footer a {
  margin: 0;
  padding: 0;
  font-size: .75rem;
   color: #fff;
  background-color: rgb(16, 39, 159);
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 10vh;
}
.footer-left {
    padding: .25rem;
place-self: center;
  grid-column: 1;
  max-width: 100%;
}
.footer-center {
  display: grid;
  grid-auto-flow: row;
  padding: .25rem;
  grid-column: 2;
  place-self: center;
  gap: .25rem;
}
.footer-right {
      padding: .25rem;
  place-self: center;
  grid-column: 3;
}

/*---------------------------------
-----------------------------------
-----------------------------------
---------------------------------*/


  .main-page-image > div {
  margin-top: 3rem;
  margin-bottom: 3rem;
  }
 .header-search-container {
    display: none;
  }


.main-page-image {
  place-self: center;
  min-width: 100vw;
  max-width: 100vw;
  
}
.main-page-image img{
min-width: 100vw;
  max-width: 100vw;
}



.top-left{
display: none;
}
.top-right{
display: none;
}



@keyframes glow {
  from {
    box-shadow: 0 0 5px rgb(30, 0, 255), 0 0 10px rgb(30, 0, 255),
      0 0 10px rgb(255, 0, 255);
  }
  to {
    box-shadow: 0 0 5px rgb(255, 0, 255), 0 0 10px rgb(255, 0, 255),
      0 0 10px rgb(255, 0, 255);
  }
}

   @media screen and (max-width: 1175px) {
  .footer-container { font-size: 85%; }
}
@media screen and (max-width: 1075px) {
  .footer-container { font-size: 75%; }
}
@media screen and (max-width: 850px) {
  .footer-container { font-size: 65%; }
}
@media screen and (max-width: 700px) {
  .footer-container { font-size: 50%; }
}
@media screen and (max-width: 575px) {
  .footer-container { font-size: 30%; }
}
@media screen and (max-width: 450px) {
  .footer-container { font-size: 20%; }
}
@media screen and (max-width: 300px) {
  .footer-container { font-size: 15%; }
}
 
.portrait-search {
  place-self: center;
margin-top: 1rem;
min-width: 80vw;
max-width: 80vw;
}



.navbar {
    text-align: center;
}
.navbar ul li {
  display: grid;
  grid-auto-flow: column;

}
.nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 12px 0;
    padding: 0;
    list-style: none;
}

.nav-row li {
    /* Optional: add more styling for buttons/links */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px #0002;
    padding: 6px 0;
}
.nav-row a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
}

.off-screen-menu {
  
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  place-items: center;
  place-self: center;
  min-width: 100%;
  max-height: 100px;

    position: fixed;
    top: 0;
    right: -1450px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    text-align: center;
    transition: .3s ease;
     z-index: -10;
}
.off-screen-menu.active {
  min-height: 100vh;
     background-color:  rgb(34, 37, 49);
    right: 0;
}
.off-screen-menu.active ul {
  
  place-self: center;
  min-height: 100vh;
   display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
   z-index: 20 !important;
       font-size: 2rem;
    padding-bottom: 10vh;
    padding-top: 10vh;
}
.off-screen-menu ul li {
  /*  nav-links li = space between list items    */
  font-size: 1.25rem;
  display: inline-flex;
  margin: 10px;
  flex-direction: row;
   list-style-type: none;
}

.off-screen-menu.active ul li a {
    text-decoration: none;

  transition: color 0.3s;
  width: 100%;
  color: rgb(255, 0, 255);
}
.off-screen-menu ul li a:hover {
  color: rgb(4, 0, 255);
}

nav {
  margin-left: 0;

     grid-row: 1 /3;
    grid-column: 5;
   place-items: center;
   place-self: center;
   
}
/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    position: relative;
    display: grid;
   place-items: center;
   place-self: center;

}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color:  rgb(34, 37, 49);  
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
    
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.burger1a {
 grid-row: 2;
 place-self: center;
}
.burger1b {
 grid-row: 2;
  place-self: center;
}
.burger2a {
 grid-row: 3;
 place-self: center;
}
.burger2b {
 grid-row: 3;
 place-self: center;
}
.burger3 {
 grid-row: 4;
 place-self: center;
}
.burger4 {
 grid-row: 5;
 place-self: center;
}
.burger5 {
  grid-row: 6;
  place-self: center;
}
.burger6 {
  grid-row: 7;
  place-self: center;
}
.card {
  
  color: black;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto 45px 20px 20px auto 35px 25px;

  background-color: rgb(255, 255, 255);
  
  
}

.card-grid-item-1 {
 
grid-row: 2;
grid-column: 1 / 5;
}
.card-grid-item-2 {

grid-row: 1;
grid-column: 1 / 5;
}

.city-state-zip-phone { grid-row: 3 / 5; grid-column: 1 / 5; }

.card-grid-item-7 {
    place-self: center;
grid-row: 7;
grid-column: 1;
}
.card-grid-item-8 {
    place-self: center;
grid-row: 7;
grid-column: 2;
}
.card-grid-item-9 {
    place-self: center;
grid-row: 7;
grid-column: 3;
}
.card-grid-item-10 {
    place-self: center;
grid-row: 7;
grid-column: 4;
}
.card-grid-item-11 {
  place-self: center;
  width: 100%;
grid-row: 5;
grid-column: 1 / 5;
}
.card-grid-item-12 {
grid-row: 5;
grid-column: 3 / 5;
}
.card-grid-item-13 {
    place-self: bottom;
grid-row: 6;
grid-column: 1;
}
.card-grid-item-14 {
    place-self: center;
grid-row: 6;
grid-column: 2;
}
.card-grid-item-15 {
    place-self: bottom;
grid-row: 6;
grid-column: 4;
}
.card-grid-item-16 {
    place-self: center;
grid-row: 6;
grid-column: 3;
}


.venue-card-frame {
    place-self: center;
  display: flex;
 grid-row: 5;

  max-height: 520px;
 margin: 0;
 padding: 0;
}
.venue-card-info li {
color: rgb(0, 0, 0);

}
.venue-profile-frame {

  display: grid;
  grid-row: 6;
  place-content: center;
  min-width: 100%;
  max-height: 100%;
}

.venue-profile {
 
  place-self: center;
  place-content: center;
  min-height: 100%;
  max-height: 100%;
  min-width: 100%;
  max-width: 100%;

}
.venue-profile form {
  min-height: 100%;
  width: 90%;
}
.venue-profile-update {
  position: inherit;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px auto auto auto;
  color: black;
  min-height: 100%;
  max-height: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-bottom: 10vh;

}

.venue-profile textarea {
  min-width: 90%;
  min-height: 100%;
}
.venue-profile-form {
  max-height: 100%;
}
.profile-settings-form-container0 {
  grid-row: 1; 
  grid-column: 1 / 3;
  width: 100%;
  place-self: center;
}
.profile-settings-form-container1 {
  max-height: 75%;
 grid-column: 1;
 grid-row: 2;

}
.profile-settings-form-container1 input {
  height: 2rem;
  border-radius: 5px;
 display: block;
 min-width: 90%;
  max-width: 90%;
   margin-bottom: 1rem;
  margin-left: 5%;
  margin-right: 5%;
}
.profile-settings-form-container1 label {
  display: block;
  text-align: left;  
   margin-left: 5%;
  margin-right: 5%;
}
.profile-settings-form-container1b {
  max-height: 75%;
 grid-column: 2;
 grid-row: 2;
}
.profile-settings-form-container1b input {
  height: 2rem;
  border-radius: 5px;
 display: block;
   margin-bottom: 1rem;
   min-width: 90%;
  max-width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}
.profile-settings-form-container1b label {
  display: block;
  text-align: left;  
   margin-left: 5%;
  margin-right: 5%;
}

.profile-settings-description-form-container2 {
  border-radius: 5px;
  margin-top: 2rem;
  margin-bottom: .5rem;
  min-height: 5rem;
  max-height: 10rem;
grid-row: 3;
 grid-column: 1 / 3;
 
}


.profile-settings-includes-form-container3 {
  border-radius: 5px;
  margin-top: 1rem;
  max-height: 50%;
  grid-column: 1 / 3;
  grid-row: 4;
 gap: 10px;
}

.profile-settings-includes-form-container3 h3 {
  /* This will ensure the h3 always takes up the full width of its container */
  width: 100%;
 justify-self: left;
  margin-bottom: 10px; /* Add some space below the heading */
}
.checkbox-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* This will create two columns for the checkboxes */
 gap: 10px;
}
.checkbox-wrapper {
    display: flex;
    align-items: center; /* This ensures the text and box are vertically aligned */
    justify-content: flex-start; /* Aligns the checkbox/text unit to the left */
    gap: 0.4rem; /* Controls the horizontal space between the checkbox and the label */
}

/* Modify the label to be a flex item as well */
.checkbox-wrapper label {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Ensures the checkbox and text within the label are tightly coupled */
    text-align: left;
    white-space: nowrap; /* Prevents the label text from wrapping */
}
.profile-update-button {
  justify-self: bottom;
  
  grid-column: 1 / 3;
grid-row: 5;
}
.user-id {
  display: inline-flex;
  max-width: 100vw;
}
.image-upload-container {
    justify-self: center;
 width: 100%;
  grid-row: 4;
 
}
.image-upload-form {
  place-content: center;
  color: black;
}
#image-upload-form {
    margin-top: 1rem;
}
 .upload-control {
        margin-bottom: 1rem;
 }
#image-input {
  place-self: center;
  place-content: center;
  place-items: center;
  color: black;
}
    .stripe-body-container {
      position: absolute;
      display: grid;
      grid-template-rows: 10vh auto 10vh;
      min-height: 100vh;
      max-height: 100vh;
      min-width: 100vw;
      max-width: 100vw;
    }
    .stripe {
      color: black;
      grid-row: 2;
      place-self: center;
      place-content: center;
      max-width: 600px;
      width: 90%;
      grid-row: 2;
    
    }
    .radio-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem !important;
    align-items: center !important;
    place-self: center;
    margin-top: 5px;
}

.radio-group label {
    display: flex !important;
    flex-direction: column !important; /* Stacks the radio button and its text vertically */
    align-items: center !important;   /* Horizontally centers the radio button and text */
    margin: 0 !important;
    padding: 0 !important;
    gap: 5px !important;
}

.radio-group input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: content-box !important;
     gap: 20px !important;
}
.radio-section-label {
  place-self: center;
}
    .venue-map-frame {
      grid-row: 3;

      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
    }
      #map-container {
      grid-row: 4;
  
        width: 100%;
       height: auto;
         
    }
                #map {
            width: 100%;
            height: 350px;
       
        }
  .leaflet-control-geosearch {
    z-index: 20 !important;
}
.delete-form {
  grid-row: 3;

}
 .delete-btn {
        margin-top: 5px;
        background-color: #e74c3c;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 14px;
        border-radius: 3px;
    }
    .delete-btn:hover {
        background-color: #c0392b;
    }
      table { border-collapse: collapse; max-width: 100%; padding: 1rem; }
        th, td { border: 1px solid #aaa; }
        th { background: #eee; }
        .calendar { 
        color: black;
          display: inline-block;
        }
        .calendar th, .calendar td { width: 50px; height: 50px; text-align: center; }
        .calendar .booked { background: #34d399; color: #134e1e; font-weight: bold; }
        .calendar .today { border: 2px solid #2563eb; }
      
      
    .body-booking-container {
  top: 0;
  min-width: 80vw;
  max-width: 80vw;
  min-height: 100vh;
  display: grid;
  grid-template-rows:10vh auto auto auto auto auto 10vh;
  grid-template-columns: 1fr;
  place-self: center;
  place-content: center;
  gap: 1rem;
}
        .nav-link { 
          grid-row: 3;
          font-weight: bold;
        }
 .nav-link a {
  color: blue;
 }
        .calendar-wrap {
   
           justify-self: center;
  grid-row: 4;
}
    .searchbar {
          grid-row: 5;
          }
.booking-grid {
            grid-row: 6;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 1rem 0;
}

.booking-card {
    background: #f7f8fb;
    border: 1px solid #d3d6e0;
    border-radius: 10px;
    box-shadow: 0 4px 16px #0001;
    padding: 16px;
    font-size: 1rem;
    color: #222;
    text-align: left;
}

.gallery-page-container {
  display: grid;
min-height: 100vh;
grid-template-rows: 10vh auto auto auto;
}
.gallery-order {
  place-self: center;
  max-width: 90%;
  grid-row: 3;
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  vertical-align: middle;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px; bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #635bff;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.venue-search-visibility-container {
  place-self: center;
  width: 100%;
  grid-row: 3;

    box-shadow: 0 2px 14px rgba(99,91,255,0.08);
    font-size: 1.02em;
}
.venue-search-visibility-container label {
    font-weight: 500;
    margin-right: 1em;
}
.venue-search-visibility-container h3 {
    margin-top: 0;
    color: #635bff;
}
.search-popup {
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator-body-container {
    grid-row: 2;
    max-width: 70%;
    padding: 0 20px;
}

.calculator-main-container {
    grid-row: 3;
    background: #fffdfa;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(100,80,80,0.11);
    padding: 30px;
    margin-top: 20px;
}