body{
    background : linear-gradient(135deg, #007bff 0%, #0e4ca9db, #0056b3 100%);
    display: flex; 
    min-height: 100vh; 
    overflow-x: hidden; 
    margin: 0; 
}
ul{
    list-style-type: none;
}
a{
text-decoration: none;  
}
.header-logo{
    display: flex;
    font-size: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.show {
     display: flex; 
}
.dropdown-btn {
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.header-principal{
    height: 300px;
    background: linear-gradient(1deg, #007bff 0%, #0e4ca9db, #0056b3 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
}
 .menu-contenedor-user {
    position: fixed;
    top: 46px;
    right: -267px;
    width: 250px;
    background-color: #f8f9fa;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
 }
.menu-contenedor-user.active {
    right: 0; 
}
.img-perfil-paciente{
    width: 200px;
    height: 200px;
    object-fit: cover;
}
@media (max-width: 576px) {
   .img-perfil-paciente{
    width: 100px;
    height: 100px;
   
}
    
}

@media (max-width: 991px) {
.menu-contenedor-movil {
    position: fixed;
    top: 0; 
    left: -250px; 
    width: 250px; 
    height: 100%;
    background-color: #444;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition:  0.3s ease-in-out; 
    z-index: 999; 
}
.menu-contenedor-movil.active {
    left: 0; 
}
    
}