/* styles.css */
body,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 16px;
}

/* Remove inline styles by moving to CSS */
.login-form {
  padding: 32px 16px;
  margin-top: 64px;
  opacity: 0.7;
  word-wrap: break-word;
  display: block;
}

.googleButton {
  max-width: 1400px;
  white-space: normal;
}

.loader-modal {
  display: none;
}

.large-spinner {
  font-size: 64px;
}

/* Make the sidebar a fixed vertical nav on desktop */
#w3Sidebar {
  position: fixed !important;   /* override w3-top’s positioning */
  top: 0 !important;
  left: 0 !important;
  width: 300px !important;      /* same width you were targeting before */
  height: 100vh !important;     /* full viewport height */
  z-index: 3 !important;
  font-weight: bold;
}

#mainContent {
  margin-left: 340px;
  margin-right: 40px;
}

@media (max-width: 992px) {
  /* On smaller screens, hide the sidebar */
  #w3Sidebar {
    display: none !important;
  }

  /* And let the content fill the width */
  #w3MainContent {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.custom-hr {
  width: 50px;
  border: 5px solid pink;
}

.hidden {
  display: none !important;
}

.card-img-container {
  width: 100%;
  height: 200px;
  /* whatever fixed height you like */
  overflow: hidden;
  /* hide any excess */
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills the box, cropping if needed */
}


/* Tab UI */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ea1e63;
}

/* Show tabpanels by default */
.tabcontent {
  display: block;        /* allow panels to show when JS removes .hidden */
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* Hide panels via the hidden class */
.tabcontent.hidden {
  display: none !important;
}

/* Card & hr styling, reuse from home page */
.custom-hr {
  width: 50px;
  border: 5px solid pink;
}

/* Loader modals default hidden */
.loader-modal {
  display: none;
}

/* If you want to override the w3-modal default */
.loader-modal.hidden {
  display: none !important;
}

.loader-modal:not(.hidden) {
  display: block !important;
}

/* loader-modal is always hidden unless we remove .hidden */
.loader-modal {
  display: none !important;
}
.loader-modal:not(.hidden) {
  display: block !important;
}

/* Large spinner size */
.large-spinner {
  font-size: 64px;
}

body,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif
}

body {
  font-size: 16px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ea1e63;
}

/* in your external CSS file */
.googleButton {
  max-width: 1400px;
  white-space: normal;
}

/* Sidebar: fixed 300px wide on desktop, full-height */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;      /* full viewport height */
  z-index: 3;
}

/* push the mainContent to the right of the open sidebar on desktop */
#mainContent {
  margin-left: 340px;   /* 300px sidebar + 40px padding (same as home page) */
  margin-right: 40px;
}

/* collapse sidebar on smaller screens, remove the margin */
@media (max-width: 992px) {
  #sidebar { display: none !important; }  /* w3-hide-large should do this too */
  #mainContent {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.visible    { display: block !important; }
.img-half   { width: 50%; }
.max-preview { max-width: 200px; }

/* full‑screen semi‑transparent overlay */
.loading-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* white box */
.loading-modal .modal-content {
  background: white;
  padding: 1.5rem;
  text-align: center;
}

/* animated bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #2196F3;
  animation: fill 2s infinite;
}

@keyframes fill {
  0%   { width: 0%; }
  50%  { width: 60%; }
  100% { width: 100%; }
}

#studioCarousel { overflow-x: auto; white-space: nowrap; }
.studio-preview { max-height: 200px; }
.studio-img { max-height: 200px; }
.studio-thumb img { height: 150px; display: block; }
.studio-thumb { display: inline-block; position: relative; margin-right: .5rem; }
.studio-thumb button { position: absolute; top: 4px; right: 4px; }

/* override w3-modal so that removing .hidden actually shows it */
.w3-modal:not(.hidden) {
  display: block !important;
}

.sponsorLogo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #eee;
}

/*# sourceMappingURL=styles.css.map*/