/* Push Notification Enable Section Styles */
.push-notif-enable-section {
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* Dark theme support */
body.dark .push-notif-enable-section,
html.dark .push-notif-enable-section {
    border-bottom: 1px solid #444;
    background: #2d2d2d;
}

body.dark .push-notif-enable-section small,
html.dark .push-notif-enable-section small {
    color: #b0b0b0 !important;
}

.push-notif-enable-section .alert {
    margin-bottom: 10px !important;
    padding: 10px 15px;
    border-radius: 8px;
}

.push-notif-enable-section .btn {
    display: block;
    margin: 0 auto 10px;
}

.push-notif-enable-section small {
    text-align: center;
    line-height: 1.4;
}

#enablePushNotifBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

#enablePushNotifBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#enablePushNotifBtn:active {
    transform: translateY(0);
}

#enablePushNotifBtn i {
    margin-right: 5px;
    animation: bellRing 1s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}
