/* Add here all your CSS customizations */
/*Social networks*/
.twitter-container {
    position: relative;
}

    .twitter-container img {
        width: 55%;
        display: inline-block;
    }

    .twitter-container .twitter-orange {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: .5s;
    }

    .twitter-container:hover .twitter-orange {
        opacity: 1;
    }

/* Style table body */
.cuerpoHistorico tr:nth-child(even) {
    background-color: #f9f9f9; /* Lighter color for even rows */
}

.cuerpoHistorico tr:nth-child(odd) {
    background-color: #ffffff; /* White color for odd rows */
}

/* Style table body cells */
.cuerpoHistorico td {
    border: 1px solid #dddddd; /* Light gray border */
    padding: 8px;
    text-align: left;
}