body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.content-wrapper {
    flex: 1 0 auto;
}

.custom-navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand img {
    height: 40px;
    width: auto;
}

.custom-navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.custom-navbar .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: #2ab1ad;
}