.ng-header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0) 100%);
    color: #2daf35 !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(45, 175, 53, 0.35);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
                border-color 0.2s ease;
}

.ng-header-account-link:hover {
    background: linear-gradient(135deg, #ffffff 20%, rgba(255,255,255,0.15) 100%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    border-color: rgba(45, 175, 53, 0.55);
    transform: translateY(-1px);
}

.ng-header-account-link:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


@media (max-width: 767px) {
    .ng-header-account-link {
        display: none !important;
    }
}
