.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.avatar {
    border-radius: 50%;
}

.nav-link {
    color: #1f2937;
}

    .nav-link:hover {
        color: #0d6efd;
    }

.dropdown-menu {
    min-width: 200px;
}
footer {
    display: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
nav {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

ul.top-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

    ul.top-nav li {
        white-space: nowrap;
    }

    ul.top-nav a,
    ul.top-nav button {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        background: none;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        ul.top-nav a:hover,
        ul.top-nav button:hover {
            background-color: #1abc9c;
            border-radius: 4px;
        }


.logout-item {
    display: flex;
    align-items: center;
}

    .logout-item form {
        margin: 0;
        padding: 0;
    }

.logout-button {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

    .logout-button:hover {
        background-color: #1abc9c;
        border-radius: 4px;
        color: white;
    }

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 10;
}


.page-padding-bottom {
    padding-bottom: 120px;
}
.main-content {
    padding-bottom: 60px; 
}

