body {
    background-color: #f4f6f9;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.main-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background-color: #e7e9ea;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    z-index: 1030;
}

.main-sidebar a {
    color: black;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}

.main-sidebar a:hover {
    background-color: #9ba2a6;
    color: #fff;
}

.brand-link {
    background-color: #e7e9ea;
    padding: 15px;
    font-weight: bold;
    color: black;
    text-align: center;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #858282;
}

.content-wrapper {
    margin-left: 220px;
    padding: 20px;
    transition: margin-left 0.3s ease-in-out;
}

.main-header {
    position: fixed;
    top: 0;
    left: 220px;
    right: 0;
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    padding: 0 15px;
    transition: left 0.3s ease-in-out;
    z-index: 1040;
}

.sidebar-toggle {
    background-color: none;
    border: none;
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.main-sidebar a.active {
    background-color: #9ba2a6;
    color: #fff;
}

@media (max-width: 991.98px) {
    .main-sidebar {
        transform: translateX(-220px);
    }

    .main-sidebar.show {
        transform: translateX(0);
    }

    .main-header {
        left: 0;
    }

    .content-wrapper {
        margin-left: 0;
    }

    #sidebar-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.35);
        display: none;
        z-index: 1020;
    }

    #sidebar-overlay.show {
        display: block;
    }
}

/* Register page css */
#register-form {
    margin-top: 10px;
}

/* Login page css */
#login-form {
    margin-top: 10px;
}

.logo-section img {
    max-width: 300px;
    height: auto;
    max-height: 300px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

input:focus {
    box-shadow: none !important;
}