/* Общие стили */
* {
    margin: 0;
    padding: 0;
    border: none;
    border: none;

    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: grid;
    grid-template-rows: 50px 1fr 50px; /* Хедер, основной блок, футер */
    background: rgba(31, 30, 30, 0.82);
}

.footer {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.66);
}

/* Основной блок */
.main {
    display: grid;
    grid-template-columns: 1fr 900px 1fr;
    gap: 20px;
    width: 100%;
    height: 90vh;
}

.left-sidebar {
    background: rgba(0, 0, 0, 0.66);
    padding: 20px;
    border-radius: 10px;
    overflow: auto;
    height: 100%;
    left: 0;

}

.right-sidebar {
    background: rgba(0, 0, 0, 0.66);
    padding: 20px;
    border-radius: 10px;
    overflow: auto;
    height: 100%;

}

.main-block {
    background: rgba(116, 179, 155, 0.48);
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Контент прокручивается внутри блока */
    max-width: 900px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    grid-template-rows: repeat(12, 1fr);
       border-radius: 10px;

}
