* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.site-title > a {
    text-decoration: none;
    color: #333;
}

.user-info {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

#telegram_id {
    display: none;
}

.username {
    margin-right: 10px;
    font-size: 16px;
    color: #333;
}

.profile-pic {
    width: 40px;
    height: 40px;
    /*background-color: #c4c4c4;*/
    border-radius: 50%;
    /*border: 2px solid #333;*/
}

.profile-pic > img {
    width: 100%;
    border-radius: 50%;
}

.user-menu {
    margin-top: 10px;
    min-width: 150px;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px 0;
    right: 0;
    top: 100%;
    display: none;
}

.user-menu.show {
    display: block;
}

.user-menu a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 5px 15px;
}

.user-menu a:hover {
    background-color: #f4f4f4;
}

main {
    background: #fff;
}

.path {
    padding: 5px 50px;
    min-height: 30px;
    color: rgba(51, 51, 51, 0.5);
}

.path a {
    text-decoration: none;
    color: rgba(51, 51, 51, 0.5);
}

.path a:hover {
    color: rgba(51, 51, 51, 1);
}

.content {
    width: 100%;
    max-width: 1320px;
    min-height: calc(100vh - 40px - 20px - 20px - 1px - 30px - 5px - 5px);
    margin: 0 auto;
    /*padding: 20px;*/
    background-color: #ffffff;
}
