/* /Components/BookingInformation.razor.rz.scp.css */
.booking-information[b-ljtobg2c61] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: var(--color-booking-bg);
}

.booking-information-content[b-ljtobg2c61] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
}

.booking-step-header[b-ljtobg2c61] {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

/* Email input styles */
.email-input-container[b-ljtobg2c61] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 450px;
}

.email-input[b-ljtobg2c61] {
    flex: 1;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem 0 0 0.5rem;
    outline: none;
}

.email-separator[b-ljtobg2c61] {
    padding: 0 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    height: 3.2rem; /* Match the height of input */
}

.domain-select[b-ljtobg2c61] {
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    outline: none;
}

/* Meeting name input styles */
.meeting-name-input[b-ljtobg2c61] {
    width: 100%;
    max-width: 450px;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    outline: none;
    margin-bottom: 1.5rem;
}

/* Error message styles */
.input-error[b-ljtobg2c61] {
    color: #ffc0cb;
    font-size: 1rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Action buttons */
.booking-information-actions[b-ljtobg2c61] {
    display: flex;
    width: 100%;
}

.cancel-button[b-ljtobg2c61], .action-button[b-ljtobg2c61] {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cancel-button[b-ljtobg2c61] {
    background-color: var(--color-cancel);
    color: white;
}

.cancel-button:hover[b-ljtobg2c61] {
    background-color: #b91c1c;
}

.action-button[b-ljtobg2c61] {
    background-color: var(--color-free);
    color: white;
}

.action-button:hover[b-ljtobg2c61] {
    background-color: #4d9b5b;
}
/* /Components/CircularProgress.razor.rz.scp.css */
.time-circle[b-jjg4xu0uwd] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-arc[b-jjg4xu0uwd] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.time-text[b-jjg4xu0uwd] {
    color: white;
    font-size: 30px;
    font-weight: 500;
}
/* /Components/ConfirmMeeting.razor.rz.scp.css */
.confirm-meeting[b-9i2c5fqksx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--color-confirmation-bg);
    color: white;
}

.confirm-meeting-content[b-9i2c5fqksx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.waiting-text[b-9i2c5fqksx] {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cancel-text[b-9i2c5fqksx] {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.confirm-button[b-9i2c5fqksx] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-confirmation-button);
    border: none;
    cursor: pointer;
    position: relative;
    margin-bottom: 4rem;
}

.confirm-button:hover[b-9i2c5fqksx] {
    background-color: #8a6520;
}

.confirm-button .progress-arc[b-9i2c5fqksx] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
    top: 0;
    left: 0;
}

.confirm-button .checkmark[b-9i2c5fqksx] {
    position: relative;
    color: white;
    font-size: 60px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.meeting-title[b-9i2c5fqksx] {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.meeting-organizer[b-9i2c5fqksx] {
    font-size: 1.5rem;
}

.organizer-name[b-9i2c5fqksx] {
    font-weight: 500;
}
/* /Components/ErrorModal.razor.rz.scp.css */
.error-modal-overlay[b-oueegzo1l2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500; /* Higher than regular modals */
}

.error-modal-content[b-oueegzo1l2] {
    background-color: #dc2626; /* Red background for error */
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    color: white;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #fca5a5; /* Light red border */
}

.error-modal-header[b-oueegzo1l2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.error-icon[b-oueegzo1l2] {
    font-size: 2.5rem;
}

.error-title[b-oueegzo1l2] {
    font-size: 2rem;
    font-weight: bold;
}

.error-message[b-oueegzo1l2] {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.error-auto-close[b-oueegzo1l2] {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}
/* /Components/ExtendMeeting.razor.rz.scp.css */
.extend-meeting[b-d6hqt0s45y] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: var(--color-occupied-bg);
    color: white;
}

.extend-meeting-content[b-d6hqt0s45y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
}

.extend-meeting-content .extend-text[b-d6hqt0s45y] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.extend-meeting-content .meeting-title[b-d6hqt0s45y] {
    font-size: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.extend-meeting-content .duration-buttons[b-d6hqt0s45y] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.extend-meeting-content .duration-button[b-d6hqt0s45y] {
    background-color: rgba(98, 19, 28, 0.8);
    border: none;
    border-radius: 2rem;
    color: white;
    padding: 1rem 2rem;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.extend-meeting-content .duration-button:hover:not(:disabled)[b-d6hqt0s45y] {
    background-color: rgba(98, 19, 28, 1);
}

.extend-meeting-content .duration-button:disabled[b-d6hqt0s45y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.extend-meeting-content .duration-button .unit[b-d6hqt0s45y] {
    font-size: 23px;
}

.extend-meeting-content .conflict-message[b-d6hqt0s45y] {
    color: #ffffff;
    background-color: rgba(98, 19, 28, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.cancel-button[b-d6hqt0s45y] {
    background-color: var(--color-occupied-button);
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
}

.cancel-button:hover[b-d6hqt0s45y] {
    background-color: #4d0f16;
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.spinner-overlay[b-b6eyw947oj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.spinner-container[b-b6eyw947oj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner[b-b6eyw947oj] {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--color-free);
    border-radius: 50%;
    animation: spin-b-b6eyw947oj 1s linear infinite;
}

@keyframes spin-b-b6eyw947oj {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/MeetingActions.razor.rz.scp.css */
/* End meeting button - positioned relative to meeting div */
.end-meeting-button[b-ib92tyyuha] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-occupied);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s;
}

.end-meeting-button:hover[b-ib92tyyuha] {
    background-color: #b91c1c;
}

.end-meeting-button[b-ib92tyyuha]::before,
.end-meeting-button[b-ib92tyyuha]::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

.end-meeting-button[b-ib92tyyuha]::before {
    transform: rotate(45deg);
}

.end-meeting-button[b-ib92tyyuha]::after {
    transform: rotate(-45deg);
}

/* Confirm meeting button - positioned relative to meeting div */
.confirm-meeting-schedule-button[b-ib92tyyuha] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-confirmation-button);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.confirm-meeting-schedule-button:hover[b-ib92tyyuha] {
    background-color: #8a6520;
}

/* Confirmed meeting icon - positioned relative to meeting div */
.confirmed-meeting-icon[b-ib92tyyuha] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-free);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: white;
    font-size: 20px;
    font-weight: bold;
}
/* /Components/QuickBooking.razor.rz.scp.css */
.quick-booking[b-lprnt027c4] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: var(--color-free-bg);
    color: white;
}

.quick-booking-content[b-lprnt027c4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quick-booking-header[b-lprnt027c4] {
    padding: 2rem;
    text-align: center;
}

.booking-text[b-lprnt027c4] {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.booking-time[b-lprnt027c4] {
    font-size: 1.2rem;
}

.quick-booking-title[b-lprnt027c4] {
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0 4rem 0;
}

.duration-buttons[b-lprnt027c4] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
}

.duration-button[b-lprnt027c4] {
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 2rem;
    color: white;
    padding: 1rem 2rem;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.duration-button:hover:not(:disabled)[b-lprnt027c4] {
    background-color: rgba(0, 0, 0, 0.3);
}

.duration-button:disabled[b-lprnt027c4] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.1);
}

.duration-button .unit[b-lprnt027c4] {
    font-size: 23px;
}

.conflict-message[b-lprnt027c4] {
    color: #ffffff;
    background-color: rgba(220, 38, 38, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.cancel-button[b-lprnt027c4] {
    background-color: var(--color-cancel);
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: auto;
}

.cancel-button:hover[b-lprnt027c4] {
    background-color: #b91c1c;
}
/* /Components/ScheduleMeeting.razor.rz.scp.css */
.schedule-meeting[b-a4ahekjjmw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--color-booking-bg);
    color: white;
}

.meeting-header[b-a4ahekjjmw] {
    padding: 1rem;
    text-align: center;
}

.meeting-header h1[b-a4ahekjjmw] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.selected-date-time[b-a4ahekjjmw] {
    font-size: 1.2rem;
}

.schedule-container[b-a4ahekjjmw] {
    display: flex;
    flex: 1;
    flex-direction: row;
    overflow: auto;
    padding: 1rem;
}

.calendar-view[b-a4ahekjjmw] {
    min-width: 350px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    margin-right: 1rem;
}

.month-navigation[b-a4ahekjjmw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.month-nav-button[b-a4ahekjjmw] {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.current-month[b-a4ahekjjmw] {
    font-size: 1.2rem;
    font-weight: bold;
}

.weekday-headers[b-a4ahekjjmw] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.5rem;
}

.weekday-header[b-a4ahekjjmw] {
    padding: 0.5rem;
    font-weight: bold;
}

.calendar-grid[b-a4ahekjjmw] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day[b-a4ahekjjmw] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.calendar-day:hover:not(.placeholder):not(.past-day)[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.2);
}

.calendar-day.selected[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.calendar-day.today[b-a4ahekjjmw] {
    border: 2px solid white;
}

.calendar-day.past-day[b-a4ahekjjmw] {
    opacity: 0.3;
    cursor: default; /* Don't show pointer cursor for past days */
}

.calendar-day.placeholder[b-a4ahekjjmw] {
    /* Placeholder days are empty and not clickable */
    background-color: transparent;
    cursor: default;
}

.calendar-day.future-limit[b-a4ahekjjmw] {
    opacity: 0.3;
    cursor: default;
    text-decoration: line-through;
}

.time-slots[b-a4ahekjjmw] {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    overflow-y: auto;
}

.time-slot-header[b-a4ahekjjmw] {
    margin-bottom: 1rem;
}

.time-slot-header h2[b-a4ahekjjmw] {
    font-size: 1.5rem;
    margin: 0;
}

.time-slot-grid[b-a4ahekjjmw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
}

.time-slot[b-a4ahekjjmw] {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: background-color 0.2s;
}

.time-slot.unavailable[b-a4ahekjjmw] {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot:not(.unavailable):hover[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.2);
}

.time-slot.selected[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.time-slot.within-selection[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.15);
}

.time-slot.potential-end-time[b-a4ahekjjmw] {
    border: 2px dashed rgba(255, 255, 255, 0.6);
    opacity: 0.8;
    text-decoration: none;
    cursor: pointer;
}

.time-slot.potential-end-time:hover[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.2);
}

.time-label[b-a4ahekjjmw] {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: var(--color-occupied-button);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: bold;
}

.duration-selection[b-a4ahekjjmw] {
    margin-top: 2rem;
}

.duration-selection h3[b-a4ahekjjmw] {
    margin-bottom: 1rem;
}

.duration-buttons[b-a4ahekjjmw] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.duration-button[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.duration-button:hover:not(:disabled)[b-a4ahekjjmw] {
    background-color: rgba(255, 255, 255, 0.2);
}

.duration-button:disabled[b-a4ahekjjmw] {
    opacity: 0.5;
    cursor: not-allowed;
}

.schedule-actions[b-a4ahekjjmw] {
    display: flex;
}

.cancel-button[b-a4ahekjjmw], .schedule-button[b-a4ahekjjmw] {
    padding: 1rem;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    flex: 1;
}

.cancel-button[b-a4ahekjjmw] {
    background-color: var(--color-cancel);
    color: white;
}

.schedule-button[b-a4ahekjjmw] {
    background-color: var(--color-free);
    color: white;
}

/* Loading events spinner */
.loading-events[b-a4ahekjjmw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 1rem;
    color: white;
    font-size: 1.2rem;
}

.spinner[b-a4ahekjjmw] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    animation: spin-b-a4ahekjjmw 1s linear infinite;
}

@keyframes spin-b-a4ahekjjmw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Pages/Home.razor.rz.scp.css */
/* Reset styles */
*[b-uy0pocxfi0] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

/* Header */
.header[b-uy0pocxfi0] {
  background: var(--color-header);
  color: white;
  padding: 1rem;
  font-size: 44px;
  height: 83px;
  position: relative; /* For logo positioning */
}

/* Logo in header */
.header-logo[b-uy0pocxfi0] {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  max-height: 60px; /* Slightly smaller than header height */
  max-width: 200px; /* Reasonable max width */
  object-fit: contain;
}

/* Main container */
.container[b-uy0pocxfi0] {
  display: flex;
  height: calc(100vh - 83px);
  position: relative; /* For background positioning */
}

/* Background image container */
.container[b-uy0pocxfi0]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--background-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ======= FREE ROOM STYLES ======= */
.free-room[b-uy0pocxfi0] {
  flex: 1;
  background: var(--color-free-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  padding: 2rem 0;
}

.free-room .date-time-status-wrapper[b-uy0pocxfi0] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.free-room .time[b-uy0pocxfi0] {
  font-size: 22px;
  font-weight: bolder;
}

.free-room .date[b-uy0pocxfi0] {
  font-size: 18px;
}

.free-room .status[b-uy0pocxfi0] {
  font-size: 3rem;
  font-weight: bolder;
}

.free-room .book-button[b-uy0pocxfi0] {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--color-free-button);
  border: none;
  color: white;
  font-size: 9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

/* Safari fix, as the plus is not vertically aligned otherwise */
body.safari .free-room .book-button[b-uy0pocxfi0] {
  padding-bottom: 1.8rem;
}

.free-room .book-now[b-uy0pocxfi0] {
  font-size: 1.5rem;
}

/* ======= OCCUPIED ROOM STYLES ======= */
.occupied-room[b-uy0pocxfi0] {
  flex: 1;
  background: var(--color-occupied-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0;
}

.occupied-room .time[b-uy0pocxfi0] {
  font-size: 22px;
  font-weight: bolder;
  margin-bottom: 1rem;
}

.occupied-room .date[b-uy0pocxfi0] {
  font-size: 18px;
  margin-bottom: 1rem;
}

.occupied-room .status[b-uy0pocxfi0] {
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 6rem;
}

.occupied-room .current-meeting-subject[b-uy0pocxfi0] {
  font-size: 1.5rem;
  font-weight: bolder;
  margin-top: 6rem;
}

.occupied-room .current-meeting-organizer[b-uy0pocxfi0] {
  font-size: 1rem;
}

.occupied-room .current-meeting-organizer-name[b-uy0pocxfi0] {
  font-weight: bolder;
}

/* Responsive spacing based on viewport height */
/* For smaller screens (below 800px height), reduce spacing */
@media (max-height: 800px) {
  .occupied-room .status[b-uy0pocxfi0] {
    margin-bottom: 4rem;
  }
  
  .occupied-room .current-meeting-subject[b-uy0pocxfi0] {
    margin-top: 4rem;
  }
}

/* For very small screens (below 600px height), reduce spacing further */
@media (max-height: 600px) {
  .occupied-room .status[b-uy0pocxfi0] {
    margin-bottom: 2rem;
  }
  
  .occupied-room .current-meeting-subject[b-uy0pocxfi0] {
    margin-top: 2rem;
  }
}

/* For extremely small screens (below 500px height), minimal spacing */
@media (max-height: 500px) {
  .occupied-room .status[b-uy0pocxfi0] {
    margin-bottom: 1rem;
  }
  
  .occupied-room .current-meeting-subject[b-uy0pocxfi0] {
    margin-top: 1rem;
  }
}

/* ======= SCHEDULE PANEL STYLES ======= */
.schedule[b-uy0pocxfi0] {
  width: 400px;
  background: var(--schedule-bg);
  position: relative;
}

/* When background image is present, use transparent backgrounds */
.container[style*="background-image"] .schedule[b-uy0pocxfi0] {
  background: var(--schedule-bg-transparent);
}

.container[style*="background-image"] .schedule .date-header[b-uy0pocxfi0] {
  background: var(--schedule-header-bg-transparent);
}

.schedule .date-header[b-uy0pocxfi0] {
  background: var(--schedule-header-bg);
  color: var(--schedule-header-color);
  padding: 0.5rem;
  font-size: 16px;
}

.schedule .meeting[b-uy0pocxfi0] {
  position: relative;
  padding: 1rem;
}

.schedule .meeting.current[b-uy0pocxfi0] {
  position: relative;
  padding-right: 3rem;
}

.schedule .meeting.current[b-uy0pocxfi0]::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--color-occupied);
}

.schedule .meeting.current .meeting-title[b-uy0pocxfi0] {
  color: var(--color-occupied);
}

.schedule .meeting.current.confirmation[b-uy0pocxfi0]::before {
  border-left: 10px solid var(--color-confirmation);
}

.schedule .meeting.current.confirmation .meeting-title[b-uy0pocxfi0] {
  color: var(--color-confirmation);
}

.schedule .meeting.no-meetings[b-uy0pocxfi0] {
  color: var(--schedule-no-meetings-color);
  font-size: 24px;
}

.schedule .meeting-time[b-uy0pocxfi0] {
  color: var(--schedule-meeting-time-color);
  font-size: 20px;
}

.schedule .meeting-title[b-uy0pocxfi0] {
  color: var(--schedule-meeting-title-color);
  font-size: 24px;
}

.schedule .meeting-owner[b-uy0pocxfi0] {
  color: var(--schedule-meeting-owner-color);
  font-size: 22px;
}

/* End meeting icon styles moved to MeetingActions component */

/* End meeting modal */
.modal-overlay[b-uy0pocxfi0] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content[b-uy0pocxfi0] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.modal-content .modal-text[b-uy0pocxfi0] {
  color: white;
  font-size: 2rem;
  text-align: center;
}

.modal-buttons[b-uy0pocxfi0] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.modal-button[b-uy0pocxfi0] {
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}

.modal-button:hover[b-uy0pocxfi0] {
  opacity: 0.9;
}

.modal-button.confirm[b-uy0pocxfi0] {
  background-color: var(--color-free);
  color: white;
}

.modal-button.cancel[b-uy0pocxfi0] {
  background-color: var(--color-cancel);
  color: white;
}
/* /End meeting modal */

/* Extend meeting */
.extend-meeting-button[b-uy0pocxfi0] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--color-free);
  border: none;
  border-radius: 3px;
  margin-left: 6px;
  cursor: pointer;
  vertical-align: text-top;
}

.extend-meeting-button[b-uy0pocxfi0]::before {
  content: '+';
  color: white;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}
/* /Extend meeting */
