/* Restoration CSS for LPPM */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header & Navbar */
#mu-header {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
}

.mu-header-top-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mu-top-email,
.mu-top-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 14px;
}

.brand h3 {
    margin: 0;
    font-weight: 700;
    color: #337ab7;
    /* Primary Brand Color */
    font-size: 24px;
}

#mu-menu {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: bold;
    color: #fff !important;
}

.restored-navbar {
    background-color: #337ab7 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.restored-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.restored-navbar .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.restored-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main Content Spacing */
.main-content {
    margin-top: 30px;
    margin-bottom: 50px;
    min-height: 400px;
}

/* Footer */
#mu-footer {
    background-color: #f8f9fa; /* Light background */
    color: #555; /* Darker text */
    padding: 50px 0 20px;
    border-top: 1px solid #e7e7e7;
}

.mu-footer-widget h4 {
    color: #337ab7;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #337ab7;
    display: inline-block;
    padding-bottom: 10px;
}

.mu-footer-bottom {
    background: #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

/* Utilities */
.scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #337ab7;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
    display: none;
    /* JS will likely toggle this */
    z-index: 999;
}

.scrollToTop:hover {
    background: #23527c;
    color: #fff;
}