body {
    background-image: url('../images/assetback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.navbar-custom {
    background-color: #6C757D !important;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 !important;
    width: 60%;
    margin: 0 auto;
}

/* Adjust the logo */
.sidebar-logo img {
    height: 70px;
    width: auto;
}

/* Style for the brand text */
.custom-navbar-brand {
    color: white;
    font-size: 2vw;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ensure the logo and text are centered */
.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .custom-navbar-brand {
        font-size: 3vw;
        max-width: 70%;
        white-space: normal;
        word-break: break-word;
    }
    .sidebar-logo img {
        height: 50px;
    }
    .navbar-custom {
        height: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .custom-navbar-brand {
        font-size: 3vw;
    }
    .sidebar-logo img {
        height: 60px;
    }
    .navbar-custom {
        height: 60px;
    }
}

