.rating-css{
    height:500px;
    width: 100%;
    padding: 20px;
}

.rating-css div{
    color: #fcb900;
    font-family: sans-serif;
    font-weight:800;
    text-align: center;
    padding: 20px 0;
}

/* .rating-css:hover label{
    opacity: 1;
} */

.rating-css input{
    display: none;
}

.rating-css label{
    position: relative;
    height: 150px;
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
    width: 150px;
    /* display: block; */
    font-size: 15px;
    /* agregadas para corregir lo de la tablet */
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

/* text-overflow: ellipsis;
      display: inline-block;
      overflow: hidden;
      width: 300px;
      white-space: nowrap;
      vertical-align: middle; */


.rating-css input:hover + label{
    width: 150px;
}

/* .rating-css input + label{
    font-size: 40px;
    text-shadow:1px 1px 0 #fcb900;
    cursor: pointer;

} */

.rating-css input:checked+ label ~ label{
    color: #838383;
    /* filter: grayscale(0); */
    opacity: 1;
}

.rating-css label:active {
    transform:scale(0.8);
    transition: 0.3s ease;
}


/* estas lineas son para llamar a los estilos de las etiquetas */


.custom-class table thead > tr > th:nth-child(2) {width: 600px !important;}



/* datos del css para poder trabajar con cards */

.cards-container {
    display: flex;
    gap: 20px;
}

.card {
    position: relative;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: #fff;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.card h3 {
    margin: 15px 0 5px;
    color: #ffffff;
    font-size: 1.2em;
}

.card p {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 0.9em;
}

.card:hover {
    transform: translateY(-10px);
}

.highlight-card {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #a03a2b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.highlight-card p {
    margin-top: 5px;
    font-size: 1em;
}

.explore-text {
    font-size: 1.4em;
    color: #5a2b12;
}