/* Logo Styles for LabCalc */

/* Login page logo styling */
.login-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Large login page logo styling */
.login-logo-large {
    max-width: 330px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto 10px auto !important;
    display: block !important;
    filter: brightness(0) invert(1) !important;
}

/* Login page tagline styling */
.tagline {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    text-align: center !important;
    margin: 0 auto 1rem auto !important;
    display: block !important;
    max-width: 300px !important;
    line-height: 1.4 !important;
}

/* Remove old navbar logo styles - no longer needed with sidebar */

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .login-logo {
        max-height: 80px;
    }
    
    .login-logo-large {
        max-width: 285px;
    }
    
    .tagline {
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    /* Removed navbar logo styles */
    
    /* Old navbar brand styles removed */
}

@media (max-width: 576px) {
    .login-logo {
        max-height: 70px;
    }
    
    .login-logo-large {
        max-width: 255px;
    }
    
    .tagline {
        font-size: 0.85rem;
        max-width: 250px;
        padding: 0 10px;
    }
    
    /* Removed navbar logo styles */
}

/* Ensure logo loads smoothly */
.login-logo,
.login-logo-large {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}