/* Refined Table Styling - Brand Aligned */
.contenido-ampliado table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem 0;
    font-size: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background-color: #ffffff;
}

/* Header Styling */
.contenido-ampliado table thead tr {
    background-color: #8DCF2F; /* Primary Brand Green */
}

.contenido-ampliado table th {
    padding: 22px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    border: none;
    font-family: 'Poppins-Bold', sans-serif;
}

.contenido-ampliado table th:first-child {
    text-align: left;
}

/* Body Styling */
.contenido-ampliado table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f1f1f1;
    color: #4b5563;
    vertical-align: middle;
    transition: all 0.2s ease;
    font-family: 'Poppins-Regular', sans-serif;
}

/* First Column Bold */
.contenido-ampliado table td:first-child {
    font-family: 'Poppins-SemiBold', sans-serif;
    color: #000000;
    background-color: rgba(141, 207, 47, 0.03); /* Subtle brand tint */
    text-align: left;
    width: 30%;
}

.contenido-ampliado table tbody tr:last-of-type td {
    border-bottom: none;
}

/* Hover Effects */
.contenido-ampliado table tbody tr:hover {
    background-color: #fafafa;
}

.contenido-ampliado table tbody tr:hover td {
    color: #000000;
}

/* Left Indicator on Hover */
.contenido-ampliado table tbody tr:hover td:first-child {
    box-shadow: inset 5px 0 0 #8DCF2F;
}

/* Responsividad */
.table-responsive {
    width: 100%;
    margin: 2.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

.table-responsive table {
    margin: 0;
    min-width: 700px;
}

@media (max-width: 768px) {
    .contenido-ampliado table th, 
    .contenido-ampliado table td {
        padding: 15px 20px;
        font-size: 13px;
    }
}
