/* Shared Components */

/* Account Prompt Component */
.account-notification {
    background: var(--accent-gradient);
    color: var(--accent-contrast);
    padding: 16px 48px 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    animation: slideDown 0.4s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding-right: 8px;
}

.notification-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-text strong {
    font-size: 16px;
    font-weight: 600;
}

.notification-text span {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
}

.btn-create-account {
    background: var(--accent-contrast);
    color: var(--accent-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-create-account:hover {
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .account-notification {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 16px 16px;
    }

    .notification-content {
        margin-bottom: 8px;
        padding-right: 0;
    }

    .btn-create-account {
        width: 100%;
        text-align: center;
    }

    .notification-text span {
        font-size: 13px;
    }

    .close-btn {
        top: 4px;
        right: 4px;
    }
}

