/* Ensure body fills the entire viewport */
html {
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Main content should take available space */
.container {
    flex: 1;
}

/* Add spacing to dropdown items */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
}
