/* ===== ОСНОВНА СТРУКТУРА СТОРІНКИ ===== */
.container {
    background-color: white;
    padding: 20px 0;
    min-height: 40vh;
}

#page-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

#container-wrapper {
    margin: 0 15%;
}

#container-wrapper > h2 {
    font-size: 24px;
    padding-top: 30px;
}

/* ===== ТЕКСТ ===== */
/* p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

h1, h2, h3 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
} */

/* ===== ВИРІВНЮВАННЯ ТЕКСТУ ===== */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* ===== ТАБЛИЦІ ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
}

th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: #333;
}

/* ===== UTILITY КЛАСИ ===== */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ===== МОБІЛЬНА АДАПТАЦІЯ ===== */
@media (max-width: 768px) {
    #container-wrapper {
        margin: 0 5%;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }
}
