@import url('../../style.css');
main {
    padding: 30px 10%;
}

main > .title {
    font-size: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    color: var(--blue);
}

button, 
.btn {
    padding: 7px;
    border: none;
    border-radius: 5px;
    background-color: var(--blue);
    color: white;
    cursor: pointer;
    font-size: 1.8rem;
}

button:hover,
.btn:hover {
    background-color: var(--bluehover);
}

.btn-edit {
    background-color: #ffc107;
    color: black;
}
.btn-edit:hover {
    background-color: #d39e00;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
}
.btn-delete:hover {
    background-color: #bd2130;
}

.list-news-table {
    width: 100%;
    height: auto;
    border: 1px solid #dee2e6;
    font-size: 1.8rem;
}

.list-news-table > thead > tr > th,
.list-news-table > tbody > tr > td {
    padding: 10px;
    border: 1px solid #dee2e6;
    background-color: #f9f9f9;
    text-align: center;

}

.list-news-table > thead > tr > th {
    text-align: center;
    font-weight: bold;
}
