* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
    color: #1C1C1E;
    line-height: 1.4;
    overflow-x: hidden;
}

#app {
    max-width: 400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    position: relative;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    border-bottom: 1px solid #C7C7CC;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1E;
}

.logo svg {
    width: 24px;
    height: 24px;
}

.headerInfo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.companyName {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1E;
    margin-bottom: 2px;
}

.settingsButton {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.settingsButton:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Control Buttons Row */
.controlButtonsRow {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.wakeButton {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 165, 2, 0.15);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 2, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.wakeButton:hover {
    background-color: rgba(255, 165, 2, 0.25);
}

.wakeButtonText {
    font-size: 14px;
    font-weight: 600;
    color: #ffa502;
}

.meetingControlsButton {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(52, 199, 89, 0.15);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(52, 199, 89, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.meetingControlsButton:hover {
    background-color: rgba(52, 199, 89, 0.25);
}

.meetingControlsButtonText {
    font-size: 14px;
    font-weight: 600;
    color: #34C759;
}

.homeButton {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(0, 122, 255, 0.15);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 122, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.homeButton:hover {
    background-color: rgba(0, 122, 255, 0.25);
}

.homeButtonText {
    font-size: 14px;
    font-weight: 600;
    color: #007AFF;
}

/* Main Content */
.scrollContent {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttonGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.gridButton {
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(45% - 8px);
    min-height: 140px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.gridButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gridButton:active {
    transform: translateY(0);
}

.blueButton {
    background-color: #007AFF;
}

.greenButton {
    background-color: #34C759;
}

.orangeButton {
    background-color: #FF9500;
}

.purpleButton {
    background-color: #AF52DE;
}

.buttonText {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
}

/* Footer */
.footer {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerText {
    font-size: 14px;
    color: #8E8E93;
}

/* Header Buttons */
.headerButtons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headerButton {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: #F2F2F7;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #007AFF;
    transition: all 0.2s;
}

.headerButton:hover {
    background-color: #E5E5EA;
}

.headerButton svg {
    width: 18px;
    height: 18px;
}

/* Back Button */
.backButton {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.backButton:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.backButton svg {
    color: #007AFF;
}

/* Page Title */
.pageTitle {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0;
}

.pageSubtitle {
    font-size: 16px;
    color: #8E8E93;
    margin: 8px 0 0 0;
}

/* Content */
.content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Join Meeting Page */
.inputContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meetingInput {
    width: 100%;
    padding: 16px;
    border: 1px solid #C7C7CC;
    border-radius: 12px;
    font-size: 16px;
    background-color: #F2F2F7;
    color: #1C1C1E;
}

.meetingInput::placeholder {
    color: #8E8E93;
}

.joinButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background-color: #34C759;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.joinButton:hover {
    background-color: #30B54F;
}

/* Calendar Page */
.sectionTitle {
    font-size: 20px;
    font-weight: 700;
    color: #007AFF;
    margin: 0 0 16px 0;
}

.meetingsList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meetingCard {
    background-color: #F2F2F7;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #E5E5EA;
}

.meetingTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0 0 4px 0;
}

.meetingTime {
    font-size: 14px;
    color: #8E8E93;
    margin: 0 0 8px 0;
}

.meetingFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meetingPlatform {
    font-size: 12px;
    font-weight: 600;
    color: #007AFF;
}

.meetingStatus {
    font-size: 12px;
    font-weight: 600;
    color: #34C759;
}

/* Casting Page */
.timer {
    font-size: 14px;
    color: #FF3B30;
    font-weight: 600;
    margin-top: 4px;
}

.statusBox {
    background-color: #F2F2F7;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.statusIndicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.statusDot {
    width: 8px;
    height: 8px;
    background-color: #FF3B30;
    border-radius: 50%;
}

.statusText {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instructionTitle {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0;
}

.instructionSteps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stepNumber {
    width: 24px;
    height: 24px;
    background-color: #AF52DE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.step span {
    font-size: 14px;
    color: #1C1C1E;
    line-height: 1.4;
}

.startCastingButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background-color: #AF52DE;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.startCastingButton:hover {
    background-color: #9D4EDD;
}

/* Meeting Controls Page */
.meetingPlatformSection {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platformLabel {
    font-size: 14px;
    color: #8E8E93;
    font-weight: 500;
}

.platformButton {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #F2F2F7;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
}

.platformIcon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platformText {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    text-align: left;
}

.meetingStatus {
    display: flex;
    justify-content: space-between;
    background-color: #F2F2F7;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.statusItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.statusLabel {
    font-size: 12px;
    color: #8E8E93;
    font-weight: 500;
}

.statusValue {
    font-size: 14px;
    color: #1C1C1E;
    font-weight: 600;
}

.controlButtons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.controlButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: #F2F2F7;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.controlButton:hover {
    background-color: #E5E5EA;
}

.controlButton span {
    font-size: 12px;
    font-weight: 600;
    color: #1C1C1E;
}

.muteButton, .volUpButton, .volDownButton, .cameraButton, .focusButton {
    background-color: #F2F2F7;
}

.muteButton span, .volUpButton span, .volDownButton span, .cameraButton span, .focusButton span {
    color: #1C1C1E;
}

.endCallButton {
    background-color: #FF3B30;
}

.endCallButton span {
    color: white;
}

.endCallButton svg {
    color: white;
}

.cameraControls {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E5EA;
}

.cameraControlsTitle {
    font-size: 16px;
    font-weight: 600;
    color: #8E8E93;
    margin: 0 0 16px 0;
}

.cameraButtons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cameraButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: #F2F2F7;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.cameraButton:hover {
    background-color: #E5E5EA;
}

.cameraButton span {
    font-size: 12px;
    font-weight: 600;
    color: #1C1C1E;
}

.cameraButton.homeButton {
    background-color: #007AFF;
}

.cameraButton.homeButton span {
    color: white;
}

/* Settings Page */
.tabs {
    display: flex;
    background-color: #F2F2F7;
    border-radius: 12px;
    padding: 4px;
    margin: 0 20px 20px 20px;
}

.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E93;
    transition: all 0.2s;
}

.tab.active {
    background-color: #007AFF;
    color: white;
}

.settingsContent {
    display: none;
    padding: 0 20px;
}

.settingsContent.active {
    display: block;
}

.settingsCard {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settingsCard .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #007AFF;
    justify-content: center;
}

.instructionText {
    font-size: 14px;
    color: #8E8E93;
    text-align: center;
    margin: 0;
}

.inputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inputLabel {
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1E;
}

.inputField {
    padding: 12px 16px;
    border: 1px solid #C7C7CC;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    color: #1C1C1E;
}

.inputWithButton {
    display: flex;
    gap: 8px;
}

.inputWithButton .inputField {
    flex: 1;
}

.qrButton {
    padding: 12px;
    background-color: white;
    border: 1px solid #C7C7CC;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrButton svg {
    color: #007AFF;
}

.inputHint {
    font-size: 12px;
    color: #8E8E93;
    margin: 0;
}

.saveButton, .testButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.saveButton {
    background-color: #007AFF;
    color: white;
}

.testButton {
    background-color: #34C759;
    color: white;
}

.buttonGroup {
    display: flex;
    gap: 12px;
}

.connectionStatus {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.statusTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0;
}

.statusInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statusText {
    font-size: 14px;
    color: #8E8E93;
}

.statusIndicator {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.statusIndicator.connected {
    background-color: #34C759;
    color: white;
}

/* Instant Meeting Page */
.stepCard {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stepNumber {
    width: 24px;
    height: 24px;
    background-color: #007AFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.stepContent {
    flex: 1;
}

.stepTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0 0 12px 0;
}

.stepDescription {
    font-size: 14px;
    color: #8E8E93;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.signinStatus {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.signinIcon {
    width: 32px;
    height: 32px;
    background-color: #E5E5EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
}

.signinText {
    flex: 1;
    font-size: 16px;
    color: #1C1C1E;
}

.toggleSwitch {
    width: 44px;
    height: 24px;
    background-color: #E5E5EA;
    border-radius: 12px;
    position: relative;
    transition: all 0.2s;
}

.toggleSwitch.active {
    background-color: #34C759;
}

.toggleSwitch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.2s;
}

.toggleSwitch.active::after {
    left: 22px;
}

.joinMeetingButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #34C759;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 12px;
}

.joinMeetingButton:hover {
    background-color: #30B54F;
}

.backToCalendar {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007AFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.backToCalendar:hover {
    text-decoration: underline;
}

/* QR Scanner Page */
.scannerContainer {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.qrReader {
    width: 100%;
    height: 100%;
    position: relative;
}

.scannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.qrFrame {
    width: 250px;
    height: 250px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #007AFF;
}

.corner.topLeft {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.corner.topRight {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}

.corner.bottomLeft {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
}

.corner.bottomRight {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.scannerInstructions {
    margin-top: 20px;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
}

.manualInput {
    padding: 20px;
    background-color: #F2F2F7;
    border-radius: 16px;
    margin: 20px;
}

.manualInput h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0 0 16px 0;
}

.connectButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #34C759;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 16px;
}

.connectButton:hover {
    background-color: #30B54F;
}

/* Responsive Design */
@media (max-width: 480px) {
    #app {
        max-width: 100%;
    }
    
    .header {
        padding: 16px;
    }
    
    .scrollContent {
        padding: 16px;
    }
    
    .buttonGrid {
        gap: 12px;
    }
    
    .gridButton {
        width: calc(50% - 6px);
        min-height: 120px;
        padding: 20px 12px;
    }
    
    .buttonText {
        font-size: 14px;
    }
}

/* Page Transitions */
.page {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    z-index: 10;
}

.page.active {
    display: flex;
    flex-direction: column;
}

/* Status Section */
.status-section {
    background-color: rgba(118, 118, 128, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin: 20px;
    text-align: center;
}

.status-title {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin-bottom: 8px;
}

.status-text {
    font-size: 14px;
    color: #8E8E93;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    justify-content: center;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF3B30;
}

.status-indicator.connected {
    background-color: #34C759;
}

/* Meeting Info */
.meeting-info {
    background-color: #F2F2F7;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 20px;
}

.meeting-title {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin-bottom: 4px;
}

.meeting-subtitle {
    font-size: 14px;
    color: #8E8E93;
}

/* Buttons */
.button {
    background-color: #007AFF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin: 8px 0;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #0056CC;
}

.button:disabled {
    background-color: #8E8E93;
    cursor: not-allowed;
}

.secondary-button {
    background-color: #F2F2F7;
    color: #1C1C1E;
    border: 1px solid #C7C7CC;
}

.secondary-button:hover {
    background-color: #E5E5EA;
}

/* Input Fields */
.input-group {
    margin-bottom: 16px;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1E;
    margin-bottom: 8px;
}

.input {
    width: 100%;
    padding: 12px;
    border: 1px solid #C7C7CC;
    border-radius: 8px;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #1C1C1E;
}

.input:focus {
    outline: none;
    border-color: #007AFF;
}

/* Controls Grid */
.controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px;
}

.control-button {
    background-color: #F2F2F7;
    color: #1C1C1E;
    border: 1px solid #C7C7CC;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.control-button:hover {
    background-color: #E5E5EA;
}

.control-button.active {
    background-color: #007AFF;
    color: white;
}

/* Settings */
.settings-section {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #C7C7CC;
}

.settings-title {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin-bottom: 16px;
}

/* Loading States */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loading-text {
    margin-left: 12px;
    color: #8E8E93;
}

/* Alert Styles */
.alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 300px;
    text-align: center;
}

.alert-title {
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1E;
    margin-bottom: 8px;
}

.alert-message {
    font-size: 14px;
    color: #8E8E93;
    margin-bottom: 20px;
}

.alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.alert-button {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.alert-button.primary {
    background-color: #007AFF;
    color: white;
}

.alert-button.secondary {
    background-color: #F2F2F7;
    color: #1C1C1E;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}