/* PWA Notification Prompt Styles */
.pwa-notification-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.pwa-notification-prompt.show {
    opacity: 1;
    visibility: visible;
}

.pwa-notification-prompt-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.pwa-notification-prompt.show .pwa-notification-prompt-content {
    transform: translateY(0);
}

.pwa-notification-prompt-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.pwa-notification-prompt-close:hover {
    background-color: #f5f5f5;
}

.pwa-notification-prompt-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEE8EC;
    border-radius: 50%;
}

.pwa-notification-prompt-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
    text-align: center;
    font-family: 'Suisse Intl', Arial, sans-serif;
}

.pwa-notification-prompt-text {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px;
    text-align: center;
    line-height: 1.5;
    font-family: 'Suisse Intl', Arial, sans-serif;
}

.pwa-notification-prompt-actions {
    display: flex;
    gap: 12px;
}

.pwa-notification-prompt-button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Suisse Intl', Arial, sans-serif;
}

.pwa-notification-prompt-button-primary {
    background-color: #CF0A2C;
    color: white;
}

.pwa-notification-prompt-button-primary:hover {
    background-color: #B00926;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 10, 44, 0.3);
}

.pwa-notification-prompt-button-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(207, 10, 44, 0.3);
}

.pwa-notification-prompt-button-secondary {
    background-color: #f5f5f5;
    color: #333;
}

.pwa-notification-prompt-button-secondary:hover {
    background-color: #e8e8e8;
}

.pwa-notification-prompt-button-secondary:active {
    background-color: #ddd;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .pwa-notification-prompt-content {
        padding: 20px;
    }
    
    .pwa-notification-prompt-title {
        font-size: 18px;
    }
    
    .pwa-notification-prompt-text {
        font-size: 14px;
    }
    
    .pwa-notification-prompt-button {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .pwa-notification-prompt-actions {
        gap: 8px;
    }
}

/* Settings toggle for notifications */
.notification-settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin: 16px 0;
}

.notification-settings-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.notification-settings-switch {
    position: relative;
    width: 48px;
    height: 24px;
}

.notification-settings-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.notification-settings-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.notification-settings-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .notification-settings-slider {
    background-color: #CF0A2C;
}

input:checked + .notification-settings-slider:before {
    transform: translateX(24px);
}

.notification-settings-status {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}