/* Shared layout and navigation styles */
html {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    height: 100%;
    margin: 0;
    padding-top: 50px;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    color: #000;
}

#mainContainer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: cover;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

#footerContainer {
    font-size: 13px;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer-liquid {
    background: rgba(10, 10, 10, 0.12);
    backdrop-filter: blur(20px) saturate(40%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    padding: 40px 0 20px 0;
    text-align: left;
    position: relative;
    top: 90px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 50px;
}

.navbar-brand {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand img {
    padding-left: 2px;
    padding-right: 5px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: #000000;
    --bs-navbar-color: #000;
    --bs-navbar-hover-color: #000;
    --bs-navbar-active-color: #000;
    --bs-navbar-brand-color: #000;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .dropdown-toggle {
    color: #000000;
}

.navbar-custom {
    --bs-nav-link-color: #000;
    --bs-nav-link-hover-color: #000;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link,
.navbar-custom .dropdown-toggle,
.navbar-custom .dropdown-item {
    color: #000 !important;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.35);
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}
.navbar-liquid {
    background: #ffffff;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 10px 0;
}

@media (max-width: 768px) {
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0.01rem;
    font-size: 1.25rem;
}

.navbar-brand img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}

.nav-item {
    text-align: left;
    margin-right: auto;
}

.navbar-toggler {
    margin-left: auto;
}
}

@media (max-width: 576px) {
    .icon-image {
        width: 40px;
        height: 40px;
    }

    .footer {
        font-size: 0;
    }

    .footer-content {
        padding: 15px;
    }
}

@media (min-width: 577px) {
    .icon-image {
        width: 70px;
        height: 70px;
    }
}
