


/* For demo purpose */
.fixed-plugin {
    position: fixed;
    top: 50%;
    right: -2%;
    z-index: 1031;
}

.fixed-plugin .btn {
    margin: 0px 0px 0;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    width: auto;
}

.fixed-plugin .btn:hover {
    /* No color change on hover for now */
}

@media (max-width: 768px) {
    .fixed-plugin {
        top: 50%;
        right: -4%;
    }

    .main .container {
        margin-bottom: 50px;
    }

    .navbar-office-name {
        font-size: 24px; /* Adjust this as needed for larger screens */
    }

    /* Adjust logo size on small screens */
    .navbar-brand img {
        max-width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
        width: auto; /* Ensure that the image does not stretch horizontally */
    }


    .navbar-brand font {
        font-size: 15pt; /* Adjust font size for small screens */
    }


    .navbar-office-name {
        font-size: 16px; /* Adjust this value for smaller screens */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* Adjust logo size for medium screens */
    .navbar-brand img {
        width: 100px; /* Adjust logo size for medium screens */
        height: auto; /* Maintain aspect ratio */
    }

    .navbar-brand font {
        font-size: 13pt; /* Adjust font size for medium screens */
    }

    .navbar-office-name {
        font-size: 16px; /* Adjust this value for smaller screens */
    }
}

@media (min-width: 1024px) {
    .btn-wd {
        min-width: 140px;
    }

    /* Adjust logo size for larger screens */
    .navbar-brand img {
        width: 120px; /* Fixed width for large screens */
        height: auto; /* Maintain aspect ratio */
    }

    .navbar-brand font {
        font-size: 14pt; /* Larger font size */
    }
}

.fixed-plugin ul > li:last-child a {
    margin-bottom: 15px;
}

.requiredfield {
    color: #f44336;
    display: inline-block;
    font-size: 90%;
    line-height: 0 !important;
    margin: 0 !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

/* Increase image size and text size for the navbar */
.navbar-brand img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Ensure that the image does not stretch horizontally */
}


/* Adjust the font size of the text */
.navbar-brand font {
    font-size: 14pt; /* Default font size */
    font-weight: bold; /* Optional: Make the text bold */
    color: #333; /* Optional: Adjust text color */
}

/* Ensuring the navbar does not affect the logo stretching */
.navbar-brand {
    max-width: 100%; /* Allow the image to take up the available width */
    height: auto; /* Ensure the height is flexible */
}

/* Additional styles for navbar customization */
.navbar-nav .nav-item {
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link {
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Color change on hover */
}

/* Custom Sidebar Styles */
.sidenav {
    background-color: #f8f9fa;
    padding-top: 10px;
}

.sidenav .nav-link {
    font-size: 14px;
    padding: 1rem 1.5rem;
}

.sidenav .nav-link:hover {
    background-color: #e2e6ea;
    color: #007bff;
}

/* Custom Footer Styles */
.footer {
    background-color: #f1f1f1;
    padding: 1rem 0;
    text-align: center;
    font-size: 12px;
}

.footer .container-fluid {
    padding: 0;
}

.footer .row {
    margin: 0;
}

.footer .small {
    font-size: 12px;
    color: #777;
}


