/* Meeting Scheduler page specific styles */

/* Disable transitions on page load to prevent animation */
.meeting-page-loading * {
    transition: none !important;
    animation: none !important;
}

/* Meeting Scheduler Section */
.meeting-scheduler-section {
    padding: 40px 0 96px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* When showing video, allow container to expand */
.meeting-container:has(.video-player-container[style*="block"]) {
    max-width: 100%;
    padding: 0;
}

/* Employee Selection Container */
.employee-selection-container {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
}

.employee-selection-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 32px 0;
    color: #1a1c1e;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.employee-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: #9aa0a6;
    padding: 48px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-card {
    background: #ffffff;
    border: 2px solid #dadce0;
    border-radius: 12px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.employee-card:hover {
    border-color: #3498db;
    background: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.employee-icon {
    font-size: 64px;
    color: #3498db;
    margin-bottom: 16px;
}

.employee-name {
    font-size: 20px;
    font-weight: bold;
    color: #1a1c1e;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-title {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-timezone {
    font-size: 12px;
    color: #9aa0a6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Requirement Container */
.video-requirement-container {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 64px 48px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
}

.video-requirement-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.video-requirement-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1c1e;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.video-requirement-text {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.7;
    margin: 0 0 32px 0;
    text-align: left;
    display: inline-block;
}

/* Video Player Container */
.video-player-container {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    width: calc(100vw - 48px);
    max-width: 1600px;
    margin: 0 auto;
}

.video-player-content {
    max-width: 100%;
    margin: 0 auto;
}

.interview-video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    background: #000;
    display: block;
}

.video-instruction {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #5f6368;
    margin: 32px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Meeting Form Container */
.meeting-form-container {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
}

/* Form Section */
.form-section {
    margin-bottom: 48px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.form-section-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #1a1c1e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.interview-warning-message {
    font-size: 14px;
    font-weight: 500;
    color: #856404;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px 16px 50px;
    margin: -10px 0 24px 0;
    line-height: 1.6;
    text-align: left;
    position: relative;
}

.interview-warning-message .warning-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #ffc107;
}

.timezone-selector-wrapper {
    display: none;
    align-items: center;
    gap: 8px;
}

.timezone-selector-wrapper:not(.hidden) {
    display: flex;
}

.timezone-label {
    font-size: 14px;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.timezone-select {
    padding: 8px 32px 8px 12px;
    border: 2px solid #dadce0;
    border-radius: 6px;
    background: #ffffff;
    color: #1a1c1e;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%235f6368' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 24px;
    min-width: 180px;
}

.timezone-select:focus {
    outline: none;
    border-color: #3498db;
}

.timezone-select.error {
    border-color: #e53e3e !important;
    border-width: 2px;
}

.timezone-select.error:focus {
    border-color: #e53e3e !important;
    outline: none;
}

.timezone-select:hover {
    border-color: #9aa0a6;
}

@media (max-width: 768px) {
    .form-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timezone-selector-wrapper {
        width: 100%;
    }

    .timezone-select {
        flex: 1;
    }
}

/* Form Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form Group */
.form-group {
    position: relative;
}

/* Input styling - base styles inherited from forms.css */
.select-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 16px 68px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e53e3e !important;
    border-width: 2px;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #e53e3e !important;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 0px;
}

.form-group textarea {
    resize: vertical;
    min-height: 48px;
    line-height: 1.4;
    overflow: hidden;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%235f6368' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 48px;
}

/* Calendar Container */
.calendar-container {
    margin-bottom: 0;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.calendar-header {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.calendar-month-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1c1e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.calendar-control {
    background: #ffffff !important;
    border: 2px solid rgba(218, 220, 224, 0.75) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(26, 28, 30, 0.75) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    font-size: 14px !important;
}

.calendar-control:not(:disabled):hover {
    background: #f8f9fa !important;
    border-color: rgba(154, 160, 166, 1) !important;
    color: rgba(26, 28, 30, 1) !important;
}

.calendar-control:disabled {
    border-color: rgba(218, 220, 224, 0.25) !important;
    color: rgba(26, 28, 30, 0.25) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.calendar-today {
    border-radius: 8px !important;
    height: 40px !important;
    padding: 0 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    margin-right: 15px !important;
}

.calendar-nav {
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
}

.calendar-nav .icon {
    width: 24px !important;
    height: 24px !important;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 0;
}

.calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #5f6368;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    color: #1a1c1e;
    transition: all 0.2s ease;
}

.calendar-day.unavailable {
    color: #dadce0;
    cursor: not-allowed;
    background: #f8f9fa;
    opacity: 0.5;
    pointer-events: none;
}

.calendar-day:hover:not(.disabled):not(.other-month):not(.selected):not(.unavailable) {
    background: #f8f9fa;
    border-color: #3498db;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #e3f2fd;
    color: #1a1c1e;
    border-color: #3498db;
    font-weight: 600;
    cursor: default;
}

.calendar-day.today {
    border-color: #3498db;
    border-width: 2px;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #dadce0;
    cursor: not-allowed;
    background: #f8f9fa;
    opacity: 0.5;
}

.calendar-day.other-month {
    color: #dadce0;
    opacity: 0.5;
}

/* Calendar and Time Slots Layout */
.calendar-time-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 968px) {
    .calendar-time-layout {
        grid-template-columns: 1fr;
    }
}

/* Time Slots Container */
.time-slots-container {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Duration Selector */
.duration-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.duration-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.duration-radio {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #3498db;
}

.duration-label {
    color: #5f6368;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.duration-option:has(.duration-radio:checked) {
    background: #e3f2fd;
    border-color: #3498db;
}

.duration-option:has(.duration-radio:checked) .duration-label {
    color: #1a1c1e;
}

/* Duration selector error state */
.duration-selector.error .duration-option {
    border-color: #e53e3e !important;
}

.duration-selector.error .duration-option:first-child {
    border-color: #e53e3e;
}

.custom-duration-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 2px solid #3498db;
    border-radius: 8px;
    background: #e3f2fd;
}

.custom-duration-display .duration-label {
    color: #1a1c1e;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Field Label Styling */
.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Oswald', Arial, sans-serif;
}

/* File Upload Styling */
.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border: 2px dashed #dadce0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.file-upload-label.drag-over {
    border-color: #2e7d32;
    background: #e8f5e9;
    transform: scale(1.02);
}

.file-upload-label.error {
    border-color: #e53e3e !important;
    border-width: 2px;
    background: rgba(229, 62, 62, 0.05);
}

.file-upload-label .icon {
    width: 32px;
    height: 32px;
    color: #3498db;
}

.file-upload-text {
    color: #5f6368;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.6;
}

.file-name-display {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e3f2fd;
    border: 2px solid #3498db;
    border-radius: 8px;
    color: #1a1c1e;
    font-size: 14px;
    font-weight: 600;
}

.file-name-display .icon {
    color: #2e7d32;
    width: 20px;
    height: 20px;
}

.time-slots-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1c1e;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: #f8f9fa;
    align-content: center;
    justify-items: stretch;
    flex: 1;
    min-height: 0;
}

.time-slots-placeholder {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    text-align: center;
    color: #dc2626;
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot {
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    color: #1a1c1e;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.time-slot-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 8px;
    align-items: center;
}

.time-label {
    font-weight: 700;
    color: #1a1c1e;
    justify-self: start;
}

.time-value {
    font-weight: 600;
    color: #1a1c1e;
    justify-self: end;
}

.time-slot:hover {
    background: #f8f9fa;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: #e3f2fd;
    color: #1a1c1e;
    border-color: #3498db;
}

/* Time slots error state */
.time-slots.error {
    border: 2px solid #e53e3e !important;
    background: rgba(229, 62, 62, 0.05);
}

/* Error Message */
.error-message {
    background-color: #fdecea;
    color: #c53030;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Form Actions */
.form-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* Loading Container */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    border: 8px solid #e9ecef;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #5f6368;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Success Message Card */
.success-message-card {
    background: rgba(254, 251, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 64px 48px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 24px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    color: #1a1c1e;
    text-transform: uppercase;
}

.meeting-details {
    text-align: left;
    margin-bottom: 32px;
}

.detail-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #5f6368;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.detail-content {
    font-size: 16px;
    color: #1a1c1e;
    line-height: 1.6;
    text-transform: uppercase;
}

.detail-content p {
    margin: 0;
    font-size: 15px;
}

.detail-content .video-call-url {
    text-transform: none;
}

.participant {
    margin-bottom: 16px;
}

.participant:last-child {
    margin-bottom: 0;
}

.participant strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1a1c1e;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.participant-detail {
    color: #5f6368;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.participant-detail .label {
    font-weight: 600;
    color: #1a1c1e;
    display: inline-block;
    min-width: 100px;
}

.button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.back-btn,
.return-home-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.back-btn {
    background: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
}

.back-btn:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.return-home-btn {
    background: #3498db;
    color: #ffffff;
    border: 2px solid #3498db;
}

.return-home-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.back-btn .icon,
.return-home-btn .icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .meeting-scheduler-section {
        padding: 20px 0 60px;
        align-items: stretch; /* Cards fill width instead of centering */
    }

    /* Remove container side padding so cards go edge-to-edge */
    .meeting-container {
        padding: 0;
    }

    /* Cards fill the screen edges - no border-radius, no side margins */
    .meeting-form-container {
        border-radius: 0;
        padding: 32px 24px;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .employee-selection-container {
        border-radius: 0;
        padding: 32px 24px;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .video-requirement-container {
        border-radius: 0;
        padding: 40px 24px;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .video-player-container {
        border-radius: 0;
        padding: 16px;
        box-shadow: none;
        border-left: none;
        border-right: none;
        width: 100%;
    }

    .success-message-card {
        border-radius: 0;
        padding: 48px 24px;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .meeting-info-grid {
        grid-template-columns: 1fr;
    }

    /* Stack contact info fields on mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-day {
        font-size: 12px;
        min-height: 44px; /* Minimum touch target size per WCAG */
    }

    .calendar-header {
        gap: 8px;
    }

    .calendar-today {
        padding: 0 12px !important;
        font-size: 12px !important;
        margin-right: 8px !important;
    }

    /* Show all time slots - no scrolling within the element, user scrolls the page */
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        max-height: none;
        overflow-y: visible;
    }

    .time-slot {
        padding: 14px 12px; /* Larger touch target */
    }

    /* Stack duration options on mobile */
    .duration-selector {
        grid-template-columns: 1fr;
    }

    .duration-option {
        padding: 14px 16px; /* Larger touch target */
    }

    .button-group {
        flex-direction: column;
        width: 100%;
    }

    .back-btn,
    .return-home-btn {
        width: 100%;
        justify-content: center;
    }

    .video-requirement-title {
        font-size: 22px;
    }

    .employee-list {
        grid-template-columns: 1fr;
    }

    /* Timezone select full width on mobile */
    .timezone-select {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .meeting-form-container {
        padding: 24px 16px;
    }

    .employee-selection-container {
        padding: 24px 16px;
    }

    .success-message-card {
        padding: 32px 16px;
    }

    .video-requirement-container {
        padding: 24px 16px;
    }

    .form-section-title {
        font-size: 16px;
    }

    .calendar-header {
        padding: 10px;
        gap: 6px;
    }

    .calendar-month-title {
        font-size: 14px;
    }

    /* Hide TODAY button on very small screens to save space */
    .calendar-today {
        display: none !important;
    }

    .calendar-header {
        grid-template-columns: auto 1fr auto;
    }

    .calendar-nav {
        width: 36px !important;
        height: 36px !important;
    }

    .calendar-day-header {
        font-size: 10px;
        padding: 8px 0;
    }

    .calendar-day {
        font-size: 11px;
        min-height: 40px;
        border-radius: 6px;
    }

    .time-slots {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .time-slot {
        padding: 16px 12px; /* Even larger touch target on small screens */
    }

    .time-slots-placeholder {
        font-size: 14px;
        padding: 16px;
    }

    .video-requirement-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .video-requirement-text {
        font-size: 14px;
    }

    /* Interview warning mobile */
    .interview-warning-message {
        font-size: 13px;
        padding: 14px 16px 14px 44px;
    }

    .interview-warning-message .warning-icon {
        left: 12px;
        width: 22px;
        height: 22px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}
