.woocommerce-MyAccount-navigation {
    position: sticky;
    /*top: 20px;*/
    top: 52px;
    align-self: flex-start;
}

.woocommerce-MyAccount-navigation ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0;
    margin-bottom: 40px;
    background: #f7fcfd;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #e8e8e8;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
    color: #002b36;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #e8f4f5;
    color: #007794;
    border-left-color: #007794;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #e8f4f5;
    color: #007794;
    font-weight: 600;
    border-left-color: #007794;
}

.woocommerce-MyAccount-navigation ul li a::before {
    font-family: dashicons;
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
    color: #007794;
}

/* icons */
.woocommerce-MyAccount-navigation ul li a::before {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 600 !important;
}

.woocommerce-MyAccount-navigation ul li:nth-child(1) a::before { content: '\f558'; /* Табло - gauge */ }
.woocommerce-MyAccount-navigation ul li:nth-child(2) a::before { content: '\f07a'; /* Поръчки - shopping cart */ }
.woocommerce-MyAccount-navigation ul li:nth-child(3) a::before { content: '\f019'; /* Изтегляния - download */ }
.woocommerce-MyAccount-navigation ul li:nth-child(4) a::before { content: '\f4ff'; /* Детайли на профила - user shield */ }
.woocommerce-MyAccount-navigation ul li:nth-child(5) a::before { content: '\f073'; /* Класове за бебета - calendar */ }
.woocommerce-MyAccount-navigation ul li:nth-child(6) a::before { content: '\f2f5'; /* Излизане - sign out */ }
/* account greeting */
.nsbc-account-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f7fcfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
}

.nsbc-account-greeting img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.nsbc-account-name {
    display: flex;
    flex-direction: column;
}

.nsbc-account-hello {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsbc-account-username {
    font-size: 16px;
    font-weight: 600;
    color: #002b36;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        position: static !important;
    }

    .woocommerce-MyAccount-content {
        margin-bottom: 30px;
    }
}