input[type=radio] {
    display: none;
}

input[type=radio]+label {
    display: inline-block;
    padding: 5px; /* Ajusta el padding para cambiar el tamaño de las etiquetas */
    line-height: 10px; /* Ajusta el line-height para controlar la altura de las etiquetas */
    font-size: 15px;
    border: 1.5px solid #000000;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
    background: rgb(255, 255, 255);
}

    /* Estilo para hacer los checkboxes más grandes */
    .checkbox-label {
        display: flex;
        align-items: center;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        /* Ancho del checkbox */
        height: 20px;
        /* Altura del checkbox */
        margin-right: 5px;
        /* Espacio entre el checkbox y la etiqueta */
    }

input[type=radio].buenEstado:checked+label {
    background: green;
    color: white;
}

input[type=radio].regularEstado:checked+label {
    background: yellow;
    color: rgb(0, 0, 0);
}

input[type=radio].malEstado:checked+label {
    background: red;
    color: white;
}

/* Estilo para hacer los checkboxes más grandes */
.checkbox-label {
    display: flex;
    align-items: center;
}

/*sticky card*/
.floating-card {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 130px;
    height: 45px;
    z-index: 100;

    /* Añade las siguientes líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}
