/* Articulos Styles */
.articulos-container {
    width: 100%;
    margin: 20px auto;
    max-width: 800px;
}

.articulos-table {
    width: 100%;
    border-collapse: collapse;
}

.articulos-table th,
.articulos-table td {
    border: 1px solid #000;
    /* Black cell borders */
    padding: 15px;
    text-align: center;
    background-color: #E8F5E9;
    /* Light green background */
    transition: background-color 0.3s;
}

.articulos-table td:hover {
    background-color: #C8E6C9;
    /* Slightly darker green on hover */
}

.articulos-table a {
    text-decoration: none;
    color: #1B5E20;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
}

.articulos-table a:hover {
    color: #000;
}