td {
    font-family: Tahoma;
    font-size: 14px;
    color: #000000;
}

.txt {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
}

.date {
    font-weight: bold;
    font-size: 10px;
    color: #A7A7A7;
}

.cap {
    font-weight: bold;
    color: #2E688E;
    padding-left: 5px;
    padding-top: 4px;
    padding-bottom: 3px;
}

ul li {
    margin-left: -10px;
}

/* .button-text {
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
} */
.nav-button {
    position: relative;
    width: 150px; /* або будь-яка інша ширина, що вам потрібна */
    text-align: center;
    margin: 5px;
}

.button-bg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.button-text {
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Зробіть текст повністю широким відносно батьківського елементу */
}


.button-home .button-text {
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
}



.nav-menu {
    list-style-type: none;
    margin: 15;
    padding: 0;
    display: flex;
}

.nav-item {
    margin-right: 10px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    padding: 10px;
    background-color: #FFCB0B;
    border-radius: 5px;
    margin: 1px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #ddd;
}