@font-face {
    font-family: 'Inter';
    src: url(./assets/fonts/inter/Inter-VariableFont_opsz\,wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

body {
    display: flex;
    overflow-x: hidden;
    height: 100dvh;
}

.d-none {
    display: none !important;
}

.sidebar {
    width: 232px;
    background-color: #2A3647;
    color: #CDCDCD;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 101;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100dvh;
    flex-shrink: 0;
}

.sidebar .logo img {
    height: 120px;
    width: 100px;
}

nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

nav a {
    padding: 8px 56px;
    height: 46px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    color: #CDCDCD;
}

nav a:hover {
    background-color: #2A3D59;
}

.nav-a-active {
    background-color: #091931;
    color: #FFFFFF;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 8px 56px;
    gap: 15px;
    width: 100%;
}

footer a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 16px;
}

footer a:hover {
    font-weight: 700;
    color: #00BEE8;
}

footer a:focus {
    background-color: #091931;
    color: #CDCDCD;
}

.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #F6F7F8;
}

.header-wrapper {
    height: 96px;
    display: flex;
    background-color: white;
    z-index: 100;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    position: relative;
    padding: 20px 40px 20px 100px;
}

.header-content h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.header-responsive-logo {
    width: 32px;
    height: auto;
    display: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29ABE2;
    background-color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    border: 3px solid #2A3647;
    width: 52px;
    aspect-ratio: 1/1;
}

.user-info-profile:hover {
    cursor: pointer;
    background-color: #0C2E621F;
}

.user-info a:hover {
    transform: scale(1.2);
}

.user-info-links {
    position: absolute;
    right: 40px;
    top: 96px;
    display: flex;
    flex-direction: column;
    background-color: #2A3647;
    color: #CDCDCD;
    font-size: 16px;
    line-height: 19.2px;
    border-radius: 20px 0px 20px 20px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.user-info-links a {
    padding: 18px 26px;
    text-decoration: none;
    color: #CDCDCD;
}

.user-info-links a:hover {
    background-color: #334969;
}

.user-info-links-help {
    display: none;
}

.main {
    flex-grow: 1;
    height: calc(100dvh - 92px);
    overflow-y: auto;
}

.main::-webkit-scrollbar {
    width: 8px;
}

.main::-webkit-scrollbar-track {
    background: #ffffff;
}

.main::-webkit-scrollbar-thumb {
    background: #A8A8A8;
}

.main::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

input.input-error {
    border: 1px solid #FF8190;
}

select.input-error {
    border: 1px solid #FF8190;
}

.feedback-overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
}

.feedback-overlay.show {
    display: block;
}

.feedback-overlay img {
    margin-left: 10px;
    vertical-align: middle;
}

/* Info Pages */
.info-pages-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    width:100%;
    max-width: 1440px;
}

.info-pages-container h3 {
    padding-top: 12px;
}

.info-pages-container .blue-text,
.info-pages-container a {
    color: #29ABE2;
}

.info-pages-container a:hover {
    color: #00BEE8;
}

.info-pages-container .go-back {
    width: 32px;
    position: sticky;
    top: 24px;
    margin-left: auto;
    cursor: pointer;
    border-radius: 50%;
}

.info-pages-container .go-back:hover {
    background-color: #ebebeb;
}

ol {
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
    font-weight: 700;
}

ul,
ol li {
    margin-bottom: 10px;
    padding-left: 20px;
}

ol li span {
    font-weight: 400;
}