.notification-cta-container {
    margin: 2rem 0;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-cta-container .box {
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification-cta-container .button.is-warning {
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.notification-cta-container .button.is-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Browser notification prompt styles */
.browser-notification-prompt {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    animation: slideIn 0.5s ease-out;
}

.notification-prompt-content {
    text-align: center;
}

.notification-prompt-content h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.notification-prompt-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.notification-prompt-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.notification-prompt-buttons .button {
    min-width: 180px;
    font-weight: 500;
}

.notification-prompt-buttons .button.is-primary {
    background: #3273dc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-prompt-buttons .button.is-primary:hover {
    background: #2366d1;
}

.notification-prompt-buttons .button.is-light {
    background: #f5f5f5;
    color: #363636;
    border: 1px solid #dbdbdb;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-prompt-buttons .button.is-light:hover {
    background: #eeeeee;
}

.enable-browser-notifications:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .notification-cta-container .columns {
        display: block;
    }
    
    .notification-cta-container .column {
        padding-bottom: 1rem;
    }
    
    .notification-cta-container .button {
        font-size: 1rem;
    }
    
    .notification-prompt-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .notification-prompt-buttons .button {
        width: 100%;
        max-width: 280px;
    }
}