html, body {
    width: 100vw;
    /*overflow-x: auto;*/
}

body {
    background-color: #f1ebeb;
    color: #cccccc;
    height: 100%;
    width: 100%;
}

.navbar {
    width: 100vw; /* Full viewport width */
    max-width: 100%; /* Prevent overflow */
    left: 0; /* Ensure it starts from the left */
    right: 0; /* Ensure it extends to the right */
    position: relative; /* Keep its positioning correct */
}


.navbar-light .navbar-nav .nav-link {
    color: #ccc;
    font-size: 1.2rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: #000;
    border-radius: 0;
}

.adminContent {
    width: 100%;
    height: 100vh;
}

.days {
    height: 100%;
    overflow-x: auto;
    width: 100%;
}

h1 {
    color: #333;
}

@media screen and (max-width: 480px) {
    .navbar .navbar-fluid {
        width: 200% !important;
    }
}
