/* Notification Styles */
.notification-status {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
}

.status-enabled {
    color: #28a745;
    font-weight: bold;
}

.status-disabled {
    color: #dc3545;
    font-weight: bold;
}

.notification-info {
    margin-top: 10px;
    text-align: center;
}

#notification-settings-btn {
    transition: transform 0.2s, background-color 0.2s;
}

#notification-settings-btn:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

/* Service Worker Styles */
.sw-update {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: #856404;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 10001;
}
#notification-settings{
	position: fixed;
    z-index: 99999;
    top: 73px;
    background: #ffffff;
    width: 100%;
    text-align: center;
}
.pwa-prompt {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
}

.pwa-prompt-content {
    background: white !important;
    padding: 25px !important;
    border-radius: 12px !important;
    max-width: 320px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    margin: 20px !important;
    border: 3px solid red !important; /* Debug border */
}
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 15px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instructions-steps {
    text-align: left;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step {
    margin: 10px 0;
    padding: 8px;
    background: white;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.benefits {
    margin: 15px 0;
    padding: 10px;
    background: #e7f3ff;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}