/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Resetting, using Roboto */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.language-switcher {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
}

.lang-btn {
    /* убираем все признаки кнопки */
    background: none;
    border: 0;
    padding: 0;
    margin: 0;

    /* наследуем шрифт контейнера, чтобы выглядело как обычный текст */
    font: inherit;
    color: var(--text-color, #000);   /* ваш базовый цвет текста */

    cursor: pointer;
    text-decoration: none;           /* без подчёркивания */
    transition: opacity .2s ease;
}

.lang-btn:hover { opacity: .7; }

.lang-btn:focus-visible {           /* удобный фокус для клавиатурной навигации */
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.lang-btn.active {
    font-weight: 600;               /* выделяем выбранный язык */
    color: var(--accent-color, #00AEEF);
    cursor: default;
}

/* Utility Styles */

.mt-8 {
    margin-top: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

body {
    background-color: #E1EFFF;
}

.container {
    width: 100vw;
    height: 100vh;
    min-height: 768px;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.container .sidebar {
    display: none;
    background-color: white;
}

.container .sidebar.left.mobile-show {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100vw;
    height: 100vh;
}

.container .sidebar.right {
    width: 382px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.container .sidebar .exit {
    margin-top: auto;
    margin-bottom: 142px;
}

.container > .content {
    flex: 1;
    padding: 24px;
}

.header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: white;
}

.header > .logo {
    width: 147.72px;
    height: 40px;
}

.header > .sidebar-toggle {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sidebar > .logo {
    display: none;
    width: 147.72px;
    height: 40px;
    margin-top: 21px;
    margin-bottom: 139px;
}

.button.outline {
    color: #E55858;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.button .icon {
    margin-right: 10px;
}

.sidebar .menu {
    width: 100%;
    list-style: none;
    padding: 0;
}

.sidebar .menu li {
    padding: 17px 0px;
    padding-left: 20px;
}

.sidebar .menu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #8A8A8A;
    font-weight: bold;
}

.sidebar .menu li img {
    margin-right: 10px;
}

.sidebar .menu li.active {
    border-left: 4px solid #0077FF;
    padding-left: 16px;
    border-left-width: 4px;
    background-color: #F0F7FF;
}

.sidebar .menu li.active a {
    color: #0077FF;
}

.icon {
    width: 26px;
    height: 26px;
}
