/* Divisions dropdown styles for mobile navbar */
.divisions-dropdown-mobile {
    position: fixed;
    bottom: 70px;
    right: 10px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 49;
    width: 180px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.divisions-dropdown-mobile.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.divisions-dropdown-mobile::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.divisions-dropdown-mobile a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.15s ease;
}

.divisions-dropdown-mobile a:hover {
    background-color: #f9fafb;
}

.divisions-dropdown-mobile a:active {
    background-color: #f3f4f6;
}

.divisions-dropdown-mobile .division-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.divisions-dropdown-mobile .biomedical {
    background-color: #d1fae5;
    color: #065f46;
}

.divisions-dropdown-mobile .computer-science {
    background-color: #dbeafe;
    color: #1e40af;
}

.divisions-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 48;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.divisions-overlay.show {
    opacity: 1;
    pointer-events: auto;
}