/* Notification Popup Styles - Top Center */
.notification-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    max-width: 450px;
    width: calc(100% - 40px);
    animation: slideDown 0.4s ease;
    border: 1px solid #e5e7eb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.notification-popup.show {
    display: block;
}

.popup-overlay {
    display: none;
}

.popup-title {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-message {
    color: #6b7280;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.5;
    font-size: 0.95em;
}

.popup-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-allow {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #27ae60;
    color: white;
    font-weight: 500;
}

.btn-allow:hover {
    background: #229954;
    transform: translateY(-1px);
}

.btn-deny {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 500;
}

.btn-deny:hover {
    background: #e5e7eb;
    color: #374151;
}

