/* Estilo para el boton transparente con hover azul*/
.custom-btn-transparent {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-transparent:hover {
    background-color: #0c5de0d8;
    color: white;
    transform: translateY(-2px);
}

/* Estilo para el boton con cambio de color a otro color */
.custom-btn-progress {
    background-color: #0c5de0d8;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.custom-btn-progress:hover {
    background-color: #355fe9;
    transform: translateY(-2px);
}

/* Estilo para el boton transparente con borde */
.custom-btn-transparent-border {
    background-color: transparent;
    color: #355fe9;
    border: 2px solid #0c5de0d8;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-transparent-border:hover {
    background-color: #0c5de0d8;
    color: white;
    transform: translateY(-2px);
}

/* Boton para abarcar el ancho de toda la fila de una lista */
.custom-btn-lista {
    background-color: #0c5de0d8;
    color: white;
    border: none;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
}

.custom-btn-lista:hover {
    background-color: #355fe9;
    color: white;
}

/* Estilo para el boton transparente con borde para logout */
.custom-btn-transparent-border-logout {
    background-color: transparent;
    color: #f3212b;
    border: 2px solid #f8282fd8;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-transparent-border-logout:hover {
    background-color: #d70d17d8;
    color: #ffffff;
    transform: translateY(-2px);
}