.page {
    /*margin-left: 300px;*/
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 40px;
}

.page__header {
    display: flex;
    align-items: center;
}

.page__header--right-side {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.page__name {
    cursor: default;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-black);
    margin: 0;
}

.page-content__title {
    margin: 25px 0 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gray);
    cursor: default;
}

.page-content__subtitle {
    margin: 8px 0 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-light-black);
    cursor: default;
}

.button.button--header {
    font-size: 24px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: unset;
    margin: 0;
    border: unset;
    border-radius: 8px;
    color: var(--color-black);
    position: relative;
}

.button__notification {

    position: absolute;
    top: -4px;
    right: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    background: #7c7c7c;
}
