/* /assets/library/styles.css */
html, body { 
    font-family: Arial, Helvetica, sans-serif; 
    height: 100%; 
    background-color: #f5f5f5;
    margin: 0;
}

/* Main Content Wrapper - Defaults to desktop shifted view */
.main-wrapper {
    margin-left: 250px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mobile View: Remove the left margin so content spans full width */
@media (max-width: 992px) {
    .main-wrapper { 
        margin-left: 0; 
    }
}

/* Login Card Centering */
.login-container { 
    max-width: 400px; 
    margin: 80px auto; 
}