/* Profile Install Notification */
.profile-install-notification {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.25);
    animation: slideDownNotif 0.3s ease-out;
}

@keyframes slideDownNotif {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-install-notification.hidden {
    display: none;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    flex: 1;
}

.notification-message i {
    font-size: 24px;
    flex-shrink: 0;
}

.notification-message strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.notification-message p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.3;
}

.notification-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.install-now-btn {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.install-now-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.notification-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.notification-close-btn:hover {
    opacity: 1;
}

/* Dark mode */
body.dark-mode .profile-install-notification {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

body.dark-mode .notification-message {
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .notification-content {
        flex-direction: column;
        gap: 12px;
    }

    .notification-message {
        width: 100%;
    }

    .notification-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .install-now-btn {
        flex: 1;
    }
}
