/* Основные стили для личного кабинета */
.personal-account-new {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 100px;
}

/* Левая колонка - меню */
.personal-account-new__sidebar {
    width: 273px;
    flex-shrink: 0;
}

/* Правая колонка - контент */
.personal-account-new__content {
    flex: 1;
    min-width: 0;
    padding: 20px 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

/* Меню личного кабинета */
.personal-account-menu {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 17px 18px;
}

.personal-account-menu__section {
    margin-bottom: 20px;
}

.personal-account-menu__section:last-child {
    margin-bottom: 0;
}

.personal-account-menu__title {
    color: #000;
    font-size: 14px;
    font-family: Onest;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
}

.personal-account-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #000;
    font-size: 14px;
    font-family: Onest;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.personal-account-menu__item:hover {
    color: #2A85F7;
}

.personal-account-menu__item--active {
    color: #2A85F7;
}

.personal-account-menu__item svg {
    flex-shrink: 0;
}


.personal-account-section__header {
    margin-bottom: 26px;
}

.personal-account-section__title {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    margin: 0;
}

/* Стили для пустого состояния */
.my-orders-empty {
    text-align: center;
    padding: 60px 20px;
}

.my-orders-empty__icon {
    margin-bottom: 24px;
}

.my-orders-empty__title {
    color: #000;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.my-orders-empty__text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.my-orders-empty__btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2A85F7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.my-orders-empty__btn:hover {
    background: #1a75e6;
}

/* Стили для необходимости авторизации */
.personal-account-auth-required {
    text-align: center;
    padding: 60px 20px;
}

.personal-account-auth-required__icon {
    margin-bottom: 24px;
}

.personal-account-auth-required__title {
    color: #000;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.personal-account-auth-required__text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.personal-account-auth-required__btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2A85F7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.personal-account-auth-required__btn:hover {
    background: #1a75e6;
}