:root{
    --primary-color: #9A173A;
    --secundary-color: #EE4561;

    --red-900: #841738;
    --red-700: #B8183E;
    --red-600: #DA244B;
    --red-400: #F67687;
    --red-300: #FAA7B1;
    --red-200: #FAA7B1;
    --red-100: #FCCFD4;

    --white: #FFF1F2;
    --black: #390514;
    --light-grey: #e6e6e6;
    --grey: #a29092;
    --grey-dark: #786a6b;

    --success-color: #63EAB4;
    --warning-color: #fcf3a4;
    --danger-color: #FF2945;

    --shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 
    0px 1px 3px rgba(0, 0, 0, 0.06);
}

html, body{
    overflow-x: hidden;
    overflow-y: scroll;
}

.primary-color{
    background-color: var(--primary-color);
}

.primary-color-text{
    color: var(--primary-color);
}

.secondary-color{
    background-color: #EE4561;
}

.secondary-color-text{
    color: #EE4561;
}

.red-900{
    background-color:#841738
};

.red-900-text{
   color:#841738
};

.red-700{
    background-color:#B8183E
};

.red-700-text{
    color:#B8183E
};

.red-600{
    background-color:#DA244B;
}

.red-600-text{
    color:#DA244B;
}

.red-400{
    background-color:#F67687;
}

.red-400-text{
   color:#F67687;
}

.red-300{
    background-color:#FAA7B1;
}

.red-300-text{
    color:#FAA7B1;
}

.red-200{
    background-color:#FAA7B1;
}

.red-200-text{
    color:#FAA7B1;
}

.red-100{
    background-color:#FCCFD4;
}

.red-100-text{
    color:#FCCFD4;
}

.white{
    background-color:#FFF1F2;
}

.white-text{
    color:#FFF1F2;
}

.black{
    background-color:#390514;
}

.black-text{
    color:#390514;
}

.light-grey{
    background-color:#c6c1c2;
}

.light-grey-text{
    color:#c6c1c2;
}

.grey{
    background-color:#a29092;
}

.grey-text{
    color:#a29092;
}

.dark-grey{
    background-color:#786a6b;
}

.dark-grey-text{
    color:#786a6b;
}

.warning{
    background-color: var(--warning-color);
}

.warning-text{
    color: var(--warning-color);
}

.warning-complement-text{
    color: #ad9225;
}

.success{
    background-color: #63EAB4;
}

.success-complement-text{
    color: #419976;
}

.danger{
    background-color: var(--danger-color);
}

.danger-text{
    background-color: var(--danger-color);
}

.title-text{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
}

.subtitle-text{
    font-size: 2rem;
    font-weight: 600;
}

.subtitle-text-secondary-text{
    font-size: 1.75rem;
    font-weight: 600;
}

.title-section-text{
    font-size: 1.5rem;
    font-weight: 500;
}

.paragraph-text{
    font-size: 1rem;
    font-weight: 400;
}

.paragraph-light-text{
    font-size: 1rem;
    font-weight: 300;
}

.paragraph-semibold-text{
    font-size: 1rem;
    font-weight: 500;
}

.paragraph-bold-text{
    font-size: 1rem;
    font-weight: 700;
}

.link-text{
    font-size: 1rem;
    font-weight: 500;
    color: var(--red-600);
    text-decoration: none;
}

.link-text:hover{
    color: rgb(149, 1, 1);
    text-decoration: none;
}

.medium-text{
    font-size: 1.25rem;
    font-weight: 500;
}

.small-text{
    font-size: 0.875rem;
    font-weight: 400;
}

/* CLASES DE UTILIDAD*/

h1, h2, h3, p, a{
    margin:0;
    text-decoration: none;
}

.full-width{
    width: 100%;
}

.width-50{
    width: 50%;
}

.width-75{
    width: 75%;
}

.full-height{
    height: 100dvh;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.top-10{
    top: 10px;
}

.right-15{
    right: 15px;
}

.right-30{
    right: 30px;
}

.flex{
    display: flex;
} 

.justify-center{
    justify-content: center;
}

.justify-end{
    justify-content: end;
}

.wrap{
    flex-wrap: wrap;
}

.gap-05x{
    gap: 0.5rem;
}

.gap-1x{
    gap: 1rem;
}

.align-start{
    align-items: start;
}

.align-center{
    align-items: center;
}

.align-end{
    align-items: end;
}

.no-margin{
    margin: 0;
}

.margin-top-1x{
    margin-top: 1rem;
}

.margin-top-2x{
    margin-top: 2rem;
}

.margin-top-3x{
    margin-top: 3rem;
}

.margin-right-1x{
    margin-right: 1rem;
}

.margin-left-1x{
    margin-left: 1rem;
}

.margin-left-2x{
    margin-left: 2rem;
}

.margin-left-3x{
    margin-left: 3rem;
}

.margin-bottom-1x{
    margin-bottom: 1rem;
}

.large-padding{
    padding: 1rem 2.2rem;
}

.hidden{
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s
}

.padding-1x{
    padding: 1rem;
}


.padding-bottom-1x{
    padding-top: 1rem;
}

.bold-text{
    font-weight: bold;
}

.ligth-text{
    font-weight: lighter;
}

.text-center{
    text-align: center;
}

/* >>>> FIN CLASES DE UTILIDAD*/

/* >>>> COMPONENTES */

.notice{
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    background-color: var(--red-300);
    color: var(--red-700);
    text-align: center;
    font-size: 1.125rem;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 25px;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag{
    max-width: fit-content;
    padding: 0.45rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    font-size: 1rem;
    font-weight: regular;
    color: var(--white);
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
}

.active{
    color: var(--red-300);
    font-weight:regular;
    font-size: 1rem;
    border-bottom: 6px solid var(--red-600);
}

.card{
    padding: 10px 15px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
}

.card-hover:hover{
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.row{
    display: flex;
    flex-direction: row;
    padding-top: 1rem;
}

.column{
    display: flex;
    flex-direction: column;
}

.floating-button{
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    border-radius: 0px 0px 10px 0px;
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.floating-button:hover{
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.float-btn{
    border-radius: 8px;
    padding: 1rem;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.float-btn:hover{
    cursor: pointer;
}

.fab-options{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.fab-options.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.fab-option-btn{
    background-color: var(--white);
    padding: 8px 16px;
    width: fit-content;
    max-width: fit-content;
    min-width: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--red-900);
}

.fab-option-btn:hover{
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
}

.menu-options.is-visible {
    max-height: 200px; /* Suficiente altura para tus opciones */
    opacity: 1;
}

.card-options{
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1rem;
    gap: 8px;
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    min-width: 120px;
    max-width: max-content;
    text-align: justify;
    border-radius: 8px;
    margin-top: 4px;
}

.toggle-icon-button{
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 25px;
    height: 25px;
}

.toggle-icon-button:hover{
    border-radius: 50%;
    background-color: var(--light-grey);
}


.icon-text{
    display: flex;
}

.icon-text i{
    margin-right: 0.5rem;
}

.icon-button{
    background-color: var(--red-400);
    color: var(--white);
    border:none;
    padding: 1rem;
    transition: all 0.5s ease-in-out;
}

.icon-button:hover{
    background-color: var(--red-900);
    color: var(--white);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.primary-button{
    background-color: var(--red-600);
    border: 1px solid var(--red-100);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    max-width: fit-content;
    min-width: 200px;
    transition: all 0.5s ease-in-out;
}

.secondary-button{
    background-color: transparent;
    border: 1px solid var(--red-600);
    font-size: 1rem;
    font-weight: 400;
    color: var(--red-600);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    max-width: fit-content;
    min-width: 200px;
    transition: all 0.5s ease-in-out;
}

.primary-button:hover, .secondary-button:hover{
    background-color: var(--red-900);
    border: 1px solid var(--red-100);
    color: var(--white);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.title{
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--red-300);
    color: var(--black);
    border-radius: 0 0 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    gap: 1.5rem;
}

.title h1{
    font-size: 1.5rem;
}

.title a{
    color: var(--black);
}

.title i{
    font-size: 1.125rem;
}

.title i:hover{
    cursor: pointer;
    opacity: 0.5;
}

.input{
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    max-width: none;
    min-width: 350px;
}

select{
    box-sizing: inherit;
    overflow: hidden !important;
    max-width: fit-content;
    min-width: 350px;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
}

.textarea{
    border: 2px solid var(--light-grey);
    border-bottom: none;
    border-radius: 6px 6px 0px 0px;
    padding: 10px 15px;
}

.textarea-buttons{
    border: 2px solid var(--light-grey);
    border-top: none;
    border-radius: 0px 0px 6px 6px;
}

textarea:focus{
    outline: none;
    border: 2px solid var(--light-grey);
    border-bottom: none;
}

.tab{
    overflow: hidden;
    background-color: var(--white);
    border-radius: 1rem 1rem 0 0;
}

.tab button {
    background-color: transparent;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    transition: 0.3s;
    font-size: 1.25rem;
    border: transparent;
}

.tab button:hover {
    background-color: var(--light-grey);
    border-bottom: 0.25rem solid var(--grey) !important;
}

.tabcontent {
    display: none;
    padding: 16px 12px;
    border: 3px solid var(--light-grey);
    border-top: none;
}

.tabactive{
    color: var(--grey);
    background-color: var(--light-grey) !important;
    border-bottom: 0.25rem solid var(--grey) !important;
    color: var(--grey);
}

#day_list{
    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: auto; 
    white-space: nowrap; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#day_list::-webkit-scrollbar {
    display: none; /* Para navegadores basados en Chromium (Chrome, Edge, etc.) */
}

#day_list .next-btn{
    margin: 0px 12px;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    font-size: 1.725rem;
    text-align: center;
    color: var(--white);
    background-color: var(--red-400);
}

#day_list .next-btn:hover{
    cursor: pointer;
    background-color: rgb(248, 138, 157);
    color: black;
}

#day_list .day_container{
    width: 40px;
    height: 50px;
    background-color: white;
    padding: 1.25rem 1rem;
    color: black;
    margin-left: 0.65em;

    border-radius: 0px 0px 15px 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: background-color 0.3s ease-in-out;
}

#day_list .day_container:hover{
    
    background-color: rgb(244, 129, 129);
    color: white;
    transition: background-color 0.3s ease-in-out;
}

#day_list .active-day{
    margin-left: 1rem;
    width: 35px;
    height: 50px;
    background-color: var(--secundary-color);
    padding: 1.25rem;
    color: white;

    border-radius: 0px 0px 15px 0px;
    box-shadow: background-color 0.3s ease-in-out;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

    transition: background-color 0.3s ease-in-out;
}

#day_list .active-day:hover{
    
    background-color: var(--primary-color);
    
    color: var(--red-200);
    transition: background-color 0.3s ease-in-out;
}

#checkbox-container{
    align-items: center;
    margin: 1rem 0;
    width: 50%;
}

#checkbox-container .label-switch{
    display: inline-block;
    width: 4rem;
    height: 1.5rem;
    background: var(--grey);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#checkbox-container #appointment_virtual, #appointment_online_payment{
    display: none;
}

#checkbox-container .label-switch::after{
    position: absolute;
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--white);
    border-radius: 100px;
    top: 4px;
    left: 5px;
    transition: 0.3s;
}

#checkbox-container #appointment_virtual:checked~ .label-switch::after{
    background: var(--red-200);
    left: 28px;
}

#checkbox-container #appointment_virtual:checked~ .label-switch{
    background: var(--red-400);
}

#checkbox-container #appointment_online_payment:checked~ .label-switch::after{
    background: var(--red-200);
    left: 28px;
}

#checkbox-container #appointment_online_payment:checked~ .label-switch{
    background: var(--red-400);
}

.role-options-wrapper{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.role-option{

}

.role-radio-input{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.role-label{
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 200px;
    justify-content: flex-start;
}

.role-label:hover{
    border-color: var(--red-300);
    color: var(--red-300);
    background-color: #f7f7f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.role-radio-input:checked + .role-label{
    border-color: var(--primary-color);
    background-color: var(--red-100);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    color: var(--primary-color);
}

.role-label .role-icon-placeholder{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.role-radio-input:checked + .role-label .role-icon-placeholder{
    background-color: var(--primary-color); /* Relleno del círculo al seleccionar */
    border-color: var(--primary-color); /* Borde del círculo al seleccionar */
    /* Aquí añadimos el checkmark SVG como background-image o con un pseudo-elemento */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 70%; /* Tamaño del checkmark dentro del círculo */
    background-repeat: no-repeat;
    background-position: center;
}

.error-message {
    color: red;
    font-size: 0.8em;
    margin-top: 0.2em;
  }

/* >>>> FIN COMPONENTES */



/* dispositivos antiguos muy pequeños y angostos*/
@media (min-width: 300px) {

    html, body{
        /* */
        font-size: 16px;
    }

    #nav{
        display: none;
    }

    #nav-mobile{
        display: block;
    }

    .container .main{
        width: 95%;
    }

    .container .complement{
        width: 95%;
    }

    #no-appointment img{
        height: 350px;
        width: 350px;
        max-width: -webkit-fill-available;
    }

    .floating-button{
        bottom: 55px;
        right: 25px;
        padding: 1rem;
    }

    #label-floating-btn{
        display: none;
    }

    #complement-day-list{
        width: 100%;
    }

    #day_list{
        touch-action: auto;

        justify-content: start;
    }

    #day_list .next-btn, .prev-btn{
        display: none;
    }

    #checkbox-container{
        width: 75%;
    }

    #checkbox-container .label-switch{
        width: 3.275rem;
    }

}

/* dispositivos mobiles */
@media (min-width: 576px) {

    html, body{
       /* background-color: lightgreen;*/
        font-size: 16px;
    }

    #nav{
        display: none;
    }

    #nav-mobile{
        display: block;
    }

    .container .main{
        width: 85%;
    }

    .container .complement{
        width: 85%;
    }

    #no-appointment img{
        height: 250px;
    }

    .floating-button{
        bottom: 30px;
        right: 25px;
    }

    #label-floating-btn{
        display: none;
    }

    #checkbox-container .label-switch{
        width: 3.275rem;
    }
    
}

/* dispositivos medianos como tablets */
@media (min-width: 768px) {

    html, body{
        font-size: 16px;
    }

    textarea{
        resize: none;
    }

    #nav{
        display: none;
    }

    #nav-mobile{
        display: block;
    }

    .container .main{
        width: 75%;
    }

    .container .complement{
        width: 75%;
    }

    .main .appointment-card{
        padding: 15px 20px;
        margin-bottom: 1em;
        width: 65%;
    }

    #no-appointment img{
        height: 250px;
    }

    .floating-button{
        position: fixed;
        bottom: 300px;
        right: 30px;
    }

    #complement-day-list{
        width: 95%;
    }

    #label-floating-btn{
        display: inline;
    }

    #day_list{
        touch-action: auto;

        justify-content: center;
    }

    #day_list .next-btn, .prev-btn{
        display: inline;
        height: 35px;
        width: 35px;
        font-size: 2rem;
    }

    #checkbox-container .label-switch{
        width: 3.275rem;
    }
    
}

/* laptos pequeñas */
@media (min-width: 992px) {

    html, body{
        font-size: 18px;
    }

    #nav{
        display: block;
    }

    #nav-mobile{
        display: none;
    }

    .container .main{
        width: 60%;
    }

    .container .complement{
        width: 60%;
    }

    .main .appointment-card{
        padding: 15px 20px;
        margin-bottom: 1em;
        width: 100%;
    }

    #no-appointment img{
        height: 300px;
        width: 300px;
    }

    .floating-button{
        bottom: 45px;
        right: 20px;
    }

    #day_list .next-btn{
        margin: 0px 12px;
        border-radius: 100%;
        height: 35px;
        width: 35px;
        font-size: 1.725rem;
        text-align: center;
        color: var(--white);
        background-color: var(--red-400);
    }

    #checkbox-container .label-switch{
        width: 3rem;
    }
    
}

/* monitores y computadoras grandes */
@media (min-width: 1200px) {

    html, body{
        background-color: white;
        font-size: 18px;
    }

    #nav{
        display: block;
    }

    #nav-mobile{
        display: none;
    }

    .container .main{
        width: 50%;
    }

    .container .complement{
        width: 50%;
    }

    .main .appointment-card{
        padding: 15px 20px;
        margin-bottom: 1em;
        width: 100%;
    }

    .floating-button{
        bottom: 50px;
        right: 30px;
    }

    #checkbox-container .label-switch{
        width: 3rem;
    }
    
}

/* CLASES DE NAVEGACION*/


/* >>>>> FIN CLASES DE UTILIDAD*/

/* CLASES DE TITULO*/

/* >>>> FIN CLASES DE TITLE*/

/* CLASES DE CONTAINER*/



/* >>>> FIN CLASES DE CONTAINER*/

/* CLASES DE COMPLEMENT*/


.show-appointment-card{
    width: 100%;
    display: flex;
    align-items: center;
}

.show-appointment-card .show-appointment-card--time{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    background-color: var(--white);
    text-align: center;
    border-radius: 10px;
}

.show-appointment-card .show-appointment-card--time .show-appointment-card--time-date{
    font-weight: bold;
}

.show-appointment-card .show-appointment-card--time .show-appointment-card--time-time{
    width: 100%;
}

.show-appointment-card .show-appointment-card--patient-info{
    width: 80%;
    margin-left: 1rem;
}

.complement .professional-profile-public{
    padding: 1rem;
    width: 100%;
    background-color: var(--white);
    border-radius: 0px 0px 15px 0px;

}

.complement .professional-profile-public h3{
    font-size: 1rem;
}

.complement .professional-profile-public p{
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* >>>>> FIN CLASES DE COMPLEMENT*/

/* CLASES DE MAIN*/

.main .appointment-card .info{
    padding: 10px 10px 10px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.main .appointment-card .info .time-info{
    background-color: var(--white);
    padding: 10px;
    width: 50px;
    height: 40px;
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
}

.main .appointment-card .info .name{
    color: var(--black);
    font-weight: 400;
    font-size: 18px;
}


.main .appointment-card .details{
    padding: 12px;
    width: 500px;
    max-width: -webkit-fill-available;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.main .appointment-card .details .details-location{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
}

.main .show-appointment-card-main{
 background-color: var(--white);
 padding: 20px 25px;
 border-radius: 0px 0px 15px 0px;
 box-shadow: var(--shadow);
}

.main .show-appointment-card-main .show-appointment-item{
    margin-bottom: 16px;
}

.main .show-appointment-card-main .show-appointment-item .item-title{
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.patient-card{
    padding: 20px 25px;
    background-color: var(--white);
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    border-radius: 0px 0px 15px 0px;
}

.patient-card:hover{
    padding: 20px 25px;
    background-color: var(--red-100);
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 400;
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
    
}

.patient-card a{
    color: var(--black);
    transition: all 0.3s ease-in-out;
}

.results-list{
    padding: 0;
}


.main .professional-profile-private{
    padding: 1rem;
    background-color: var(--white);
    border-radius: 0px 0px 15px 0px;
}

.main .professional-profile-private h3{
    font-size: 1rem;
}

.main .professional-profile-private p{
    font-size: 1.2rem;
    margin-top: 1rem;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

/* >>>> FIN CLASES DE MAIN*/

/* CLASES DE floating action button*/

.google-login-button {
    background-color: #ffffff;
    color: #5f6368;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .google-login-button:hover {
    background-color: #f7f8f8;
  }
  
  .google-login-button::before {
    content: '';
    background: url('https://developers.google.com/identity/images/g-logo.png') no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
  }
  


/* >>> FIN CLASES DE floating action button*/

.image-registration{
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-img img{
    width: 100px;
    height: 100px;
}
