.app-login {
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    height: 100vh; 
    justify-content: center
}

.app-container {
    display: flex; 
    height: 100vh;
}

.menu-container {
    display: flex; 
    flex-direction: column; 
    width: 12.5rem; 
    padding: 0.0625rem 0.625rem; 
    border-right: 1px solid #000; 
    background-color: #3A8AC5;
    justify-content: flex-start;
}

.menu-logo {
    display: flex;
}

.menu-items {
    display: flex; 
    flex-direction: column; 
    margin-top: 1.25rem
}

.menu-item {
    display: flex;
    font-size: 0.875rem;
}

.main-container {
    display: flex; 
    flex-direction: column; 
    width: Calc(100% - 12.5rem); 
    height: 100vh;
    align-items: center;
}

.main-top {
    display: flex; 
    width: 100%; 
    align-items: center; 
    justify-content: space-between; 
    border-bottom: 1px solid lightgray;
    padding: 0.625rem; 

}

.main-body {
    display: flex; 
    flex-direction: column; 
    width: 100%;
    height: 90vh;
}

.main-busqueda {
    display: flex; 
    align-items: center; 
    background-color: white; 
    border: 1px solid lightgray; 
    padding-right: 0.625rem; 
    border-radius: 0.25rem; 
}

.main-busqueda > input {
    padding: 0.625rem; 
    height: 30px; 
    border: none; 
    outline: none; 
    border-radius: 0.25rem;
}

.main-perfil {
    display: flex; 
    font-size: 16px; 
    font-weight: bold;
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 12.5rem;
    margin: auto;
    height: 150px;
    width: 150px;
    z-index: 9999;
    background-size: 100%;
    background-repeat: no-repeat;

}
