.dashboard {
    padding-top: 10px;
    flex: 1;
}

/* Общии стили */
.dashboard .block {
    background-color: white;
    border-radius: 16px;
    padding: 15px;
    width: 100%;
}

.dashboard .block h2 {
    color: rgba(34, 34, 34, 1);
    font-size: 26px;
    font-weight: 600;
}

/* Секция #1 */
/* Первый блок */
.dashboard .container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.dashboard .section-1 {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.dashboard .section-1 .block {
    margin-bottom: 10px;
    margin-right: 10px;
}

.dashboard .section-1 .block-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 15px;
    width: 100%;
    gap: 10px;
}

.dashboard .section-1 .block-container .sub-block {
    border: 1px solid rgba(7, 88, 76, 1);
    border-radius: 12px;
    padding: 10px;
    width: 50%;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.dashboard .section-1 .block-container .sub-block a {
    display: flex;
    align-items: center;
}

.dashboard .section-1 .block-container .sub-block span {
    color: rgba(2, 24, 20, 1);
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

.dashboard .section-1 .block-container .sub-block:hover {
    background-color: rgba(7, 88, 76, 0.08);
    border-color: rgba(7, 88, 76, 1);
}

.dashboard .section-1 .block-container .sub-block:hover span {
    color: rgba(7, 88, 76, 1);
}

/* Второй блок */
.dashboard .section-1 .applications-information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(7, 88, 76, 1);
    border-radius: 12px;
    padding: 20px 0;
    margin-top: 15px;
    background: #fff;
}

.dashboard .section-1 .applications-block {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard .section-1 .applications-block:not(:first-child) {
    border-left: 1px solid rgba(200, 205, 204, 1);
}

.dashboard .section-1 .applications-block p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(98, 98, 98, 1);
}

.dashboard .section-1 .applications-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: rgba(2, 24, 20, 1);
    margin-top: 7px;
}

.dashboard .section-1 .statistics {
    display: flex;
    align-items: center;
}

.dashboard .section-1 .statistics span {
    font-size: 12px;
    color: rgba(108, 108, 108, 1);
    margin-top: 13px;
    max-width: 100px;
    margin-left: 5px;
}

.dashboard .section-1 .indicator {
    font-weight: 600;
}

.dashboard .section-1 .indicator.positive {
    color: rgba(7, 88, 76, 1);
}

.dashboard .section-1 .indicator.notpositive {
    color: rgba(255, 49, 29, 1);
}


/* Секция #2 */
.dashboard .section-2 {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.dashboard .section-2 .block {
    min-height: 370px;
    display: flex;
    flex-direction: column;
    container: layout / inline-size;
}

.dashboard .section-2 .block .container {
    border: 1px solid rgba(7, 88, 76, 1);
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.dashboard .section-2 .block .container h3 {
    color: rgba(7, 88, 76, 1);
    font-size: 20px;
    font-weight: 600;
}

.dashboard .section-2 .block .container .chart-container {
    margin-top: 35px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

/* Информация */
.dashboard .section-2 .block .container .chart-container .statistic {
    width: 50%;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block:last-child {
    margin-bottom: 0;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block {
    display: flex;
    flex-direction: column;
    margin-top: -3px;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .dot {
    width: 14px;
    height: 14px;
    border-radius: 100px;
    margin-right: 5px;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .dot.yellow { background-color: rgba(255, 198, 16, 1);}
.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .dot.green { background-color: rgba(7, 88, 76, 1);}
.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .dot.emerald { background-color: rgba(15, 189, 163, 1);}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block span {
    font-size: 15px;
    color: rgba(34, 34, 34, 1);
    font-weight: 500;
    margin-bottom: 5px;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block p {
    font-size: 12px;
    font-weight: 500;
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block p.yellow {
    color: rgba(255, 198, 16, 1);
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block p.green {
    color: rgba(7, 88, 76, 1);
}

.dashboard .section-2 .block .container .chart-container .statistic .statistic-block .sub-block p.emerald {
    color: rgba(15, 189, 163, 1);
}

/* График */
.dashboard .section-2 .block .container .chart-container .canvas {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.dashboard .section-2 .block .container .chart-container .canvas canvas {
    width: 170px !important;
    height: 170px !important;
}

.dashboard .section-2 .block .container .chart-container .canvas .main-information {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}


.dashboard .section-2 .block .container .chart-container .canvas .main-information p {
    font-weight: 700;
    font-size: 28px;
    color: rgba(34, 34, 34, 1);
}

.dashboard .section-2 .block .container .chart-container .canvas .main-information  span {
    color: rgba(98, 98, 98, 1);
    font-size: 16px;
    font-weight: 500;
}

/* Секция #3 */
.dashboard .section-3 {
    width: 100%;
}

.dashboard .section-3 .block .container {
    border: 1px solid rgba(7, 88, 76, 1);
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.dashboard .section-3 .block .container h3 {
    color: rgba(7, 88, 76, 1);
    font-size: 20px;
    font-weight: 600;
}

.dashboard .section-3 .block .container canvas {
    max-height: 225px;
}


/* Фикс адаптации ширины экрана */
.global-container .main-global-block,
.dashboard .container,
.dashboard .section-1,
.dashboard .section-2 {
    min-width: 0;
}

.dashboard .section-1 .block-container,
.dashboard .section-1 .applications-information {
    min-width: 0;
    flex-shrink: 1;
}

.dashboard .section-1 .applications-information {
    overflow: hidden;
}
