/* --- STILURI PENTRU BUTOANELE DIN ACȚIUNI --- */
td.actions {
    display: flex;
    align-items: center;
    gap: 8px; /* Spațiu între butoane */
}

/* Stil general pentru butoane și link-uri stilizate ca butoane */
.btn-action {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s;
}

/* Butonul "Articole" (albastru) */
.btn-articles {
    background-color: #007bff;
}
.btn-articles:hover {
    background-color: #0056b3;
}

/* Butonul "Editează" (verde) */
.edit-btn {
    background-color: #28a745;
}
.edit-btn:hover {
    background-color: #218838;
}


/* --- STILURI PENTRU PAGINAȚIE --- */
.pagination {
    margin-top: 25px;
    text-align: center;
}

.pagination a {
    color: #007bff;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #f2f2f2;
}

/* Stil pentru pagina activă */
.pagination a.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}