﻿.Label-Link-Negrita {
    color: #007bff; /* Azul estilo link */
    font-weight: bold; /* Negritas */
    cursor: pointer; /* Cursor de enlace */
    transition: color 0.3s ease; /* Transición suave al pasar el mouse */
}

.Label-Link-Negrita:hover {
    color: #0056b3; /* Azul más oscuro al pasar el mouse */
}

.Label-Link {
    color: #007bff; /* Azul estilo link */
    cursor: pointer; /* Cursor de enlace */
    transition: color 0.3s ease; /* Transición suave al pasar el mouse */
}

.Label-Link:hover {
    color: #0056b3; /* Azul más oscuro al pasar el mouse */
}

.Label-Titulo {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.Label {
    font-size: 0.95rem;
    color: #2c3e50; /* Azul grisáceo elegante */
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: color 0.3s ease;
}
.LabelSize2 {
    font-size: 1.6rem;
    color: #2c3e50; /* Azul grisáceo elegante */
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.Label-Gris {
    white-space: normal;
    font-size: 0.95rem;
    color: gray;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.Label-Blanco {
    white-space: nowrap;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: color 0.3s ease;
}