/* Phase 16.4 - Guided Notification Permission Experience Styles */

.app-push-card {
    position: fixed;
    top: -300px; /* Hidden initially for animation, dropping from top */
    right: 24px;
    width: 90%;
    max-width: 380px;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    z-index: 99998; /* Just under install prompt if both happen */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.app-push-card.visible {
    top: 24px;
}

.app-push-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A; /* Slate 900 */
}

.app-push-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569; /* Slate 600 */
}

.app-push-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.app-push-actions button {
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.app-btn-push-dismiss {
    background: transparent;
    color: #64748B; /* Slate 500 */
}

.app-btn-push-dismiss:hover {
    background: #F1F5F9; /* Slate 100 */
    color: #334155;
}

.app-btn-push-enable {
    /* Uses BidQuest Primary Color approximately */
    background: #D4A33A;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(27, 108, 242, 0.3);
}

.app-btn-push-enable:hover {
    background: #1557c0;
    box-shadow: 0 2px 5px rgba(27, 108, 242, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .app-push-card {
        top: -300px;
        right: 5%;
        width: 90%;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .app-push-card.visible {
        top: 16px;
    }
}

