.header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffff;
}

.back-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

h2 {
    text-align: center;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}
.companyinfo{
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    width: 100%;

}
.company-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin: 4px 6px 4px 0;

  font-size: 13px;
  font-weight: 500;
  line-height: 1;

  color: #4f46e5;
  background-color: #eef2ff;

  border-radius: 999px;
  white-space: nowrap;

  transition: all 0.2s ease;
  cursor: default;
}

.company-desc {
 text-align: center;
    color: #555;
    margin-top: 8px;
    margin-bottom: 25px;
    display: flex;
    width: 95% !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.booking{
        display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Day Chips */
.day-chips {
        display: flex;
    justify-content: center;
    gap: 12px;
  
    background: #fff;
    padding: 10px 42px;
    border-radius: 36px;
    margin-top: 62px;
    margin-bottom: 61px;
}

.day-chip {
    padding: 10px 15px;
    background-color: #e6e9f0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #d5d9e0;
}

.day-chip.active {
    background-color: #4da3ff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-weight: bold;
    color: #fff
}

/* Slots */
.section-title {
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff
}

.slot {
    
    background-color: white;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d9eaff;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 42%;
}


.slot.taken {
    background-color: #eef1f7;
    color: #999;
    pointer-events: none;
}

.taken-label {
    background-color: #d0d5dd;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #555;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #4da3ff;
    cursor: pointer;
}

.radio-circle.selected {
    background-color: #4da3ff;
}

/* Continue Button */
.continue-btn {
   width: 100%;
    padding: 14px;
    margin-top: 25px;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    border: none;
    color: #25003a;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
}


.continue-btn:hover {
    background-color: #005fcc;
}

.already-booked-message {
  padding: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

#slotsList{
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 11%;
    justify-content: center;
}



@media (max-width: 768px){
    .slot{
         background-color: white;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d9eaff;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    }

}
/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 14px;
    opacity: 0.9;
}

.loading-dots {
    display: inline-block;
}

.loading-dots span {
    animation: blink 1.4s infinite;
    animation-fill-mode: both;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

#interactionBlocker {
  position: fixed;
  inset: 0;
  background: transparent; /* invisible */
  z-index: 9998;
  display: none;
}

.back-btn span {
  position: relative;
  z-index: 9999; /* above blocker */
}

body.blocked body.blocked .back-btn,
body.blocked .back-btn body.blocked {
  opacity: 0.7;
  cursor: not-allowed;
}