﻿
* {
    transition: all 0.3s ease-in-out;
}

.big-text {
    font-size: 2rem;
    font-weight: bold;
}

.pacientes_title h1 {
    font-weight: bold;
}

.special_text {
    color: hsl(228, 81%, 49%);
}

.scroll {
    overflow-x: auto;
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px hsla(228, 81%, 24%, .15);
    max-width: 100%;
}


@media screen and (max-width: 576px) {
    .scroll {

        overflow-x: auto;
        background-color: white;
        padding: 1rem 2rem;
        border-radius: 10px;
        box-shadow: 0 8px 24px hsla(228, 81%, 24%, .15);
        max-width: 100%;
    }
    
}



td {
    color: hsl(228, 8%, 50%);
}

i {
    cursor: pointer;
    display: flex;
    align-items: center;
}

button {
    border: none;
    background-color: transparent;
}

.btn_paciente {
    gap: .1rem;
    align-items: center;
    margin: .7rem 0;
}

.button-editar {
    display: flex;
    justify-content: center;
    float: left;
    margin-right:10px;
    
}

    .button-editar:hover i {
        transform: translateY(-2px);
        color: hsl(228, 81%, 49%);
    }

.button-borrar {
    display: flex;
    justify-content: center;
}

    .button-borrar:hover i {
        transform: translateY(-2px);
        color: hsl(0, 100%, 61%);
    }


.table_actions {
    display: flex;
    justify-content: space-around;
}

