.custom-dashboard {
    background-color: #01819F;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .main-container {
        margin-right: 250px;
    }
}

.spacer {
    flex-grow: 1;
}

.content {
    background-color: #01819F;
    padding-bottom: 50px;
}

.image-container {
    padding: 0;
    width: 100%;
}

.custom-enter-btn {
    color: #fff;
}

.custom-enquiry-btn {
    color: #fff;
}

.sidebar-toggle-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1050;
    background-color: #01819F;
    color: white;
    border: 1px solid red;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #01819F;
    color: white;
    transition: 0.3s;
    padding: 20px 0 0 10px;
    border-left: 3px solid red;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .sidebar {
        transform: translateX(250px);
        width: 200px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar a {
        font-size: 14px;
    }

    .active {
        font-size: 15px !important;
        font-weight: normal !important;
        color: #d33 !important;
    }
}

.sidebar a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.sidebar a:hover {
    background-color: #575757;
}

body {
    margin: 0;
    padding: 0;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.custom-image {
    max-height: 100px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.title-image {
    height: 70px;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .title-image {
        height: 50px;
    }
}

.sidebar-footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding-bottom: 15px;
}

.active {
    font-size: 20px;
    font-weight: bold;
    color: #d33 !important;
}
