﻿:root {
    --el-header-text: #565656;
    --el-header-muted: #696969;
    --el-header-line: #d8d8d8;
    --el-header-border: #565656;
    --el-header-white: #ffffff;
}

.el-page {
    margin: 0;
    background: #ffffff;
}

.el-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-top: 1px solid var(--el-header-border);
    background: var(--el-header-white);
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
}

.el-navbar {
    min-height: 68px;
    background: var(--el-header-white);
}

.el-navbar__inner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 0 22px;
}

.el-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
    color: var(--el-header-text);
    text-decoration: none;
    line-height: 1;
}

    .el-brand:hover,
    .el-brand:focus {
        color: #303030;
        text-decoration: none;
    }

.el-brand__name {
    font-size: 15px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

    .el-brand__name strong {
        font-weight: 750;
    }

.el-brand__flag {
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 1px;
    object-fit: cover;
}

.el-navbar__divider {
    width: 3px;
    height: 22px;
    margin: 0 20px;
    border-radius: 3px;
    background: var(--el-header-line);
}

.el-navbar__tool {
    min-width: 0;
    overflow: hidden;
    color: var(--el-header-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.el-footer {
    margin-top: 26px;
    padding: 22px 0 28px;
    border-top: 1px solid #e7edf2;
    color: #74818d;
    font-size: 0.88rem;
}

    .el-footer p {
        margin: 0;
    }

@media (max-width: 560px) {
    .el-navbar,
    .el-navbar__inner {
        min-height: 62px;
    }

    .el-navbar__inner {
        padding: 0 14px;
    }

    .el-brand__name {
        font-size: 14px;
    }

    .el-brand__flag {
        width: 27px;
        height: 18px;
    }

    .el-navbar__divider {
        height: 20px;
        margin: 0 12px;
    }

    .el-navbar__tool {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .el-brand__name {
        max-width: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
