/* GitHub Pages specific fixes */

/* Fix for Georgia Tech logo appearing too large on GitHub Pages */
.school-logo {
    max-width: 120px !important;
    max-height: 100px !important;
    width: 120px !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
}

.school-logo img {
    max-width: 100% !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Media query for smaller screens */
@media screen and (max-width: 576px) {
    .school-logo {
        max-width: 100px !important;
        width: 100px !important;
    }
    
    .school-logo img {
        max-height: 60px !important;
    }
}
