footer {
    position: relative;
    margin-top: 2rem;
    background-color: #64696e;
    width: 100%;
    text-align: center;
    height: 50px;
    color: white;
}

footer #footer-text {
    padding: 1rem;
    margin: 0;
}

/* Main content wrapper styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-container {
    flex: 1;
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    footer #footer-text {
        font-size: 12px;
        height: auto;
    }
    
    .dashboard-container {
        margin-bottom: 3rem;
    }
}