.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group label,
.form-group input {
    vertical-align: top;
}


/* for dahboard */

.main-content {
    margin-left: 300px;
    /* Sidebar width */
    padding: 20px;
    transition: margin-left 0.3s ease;
}


/* Style the CRM button with white text */


/* Ensure the button text is white and the background is transparent */

.btn-toggle {
    padding: .15rem .5rem;
    font-weight: 600;
    color: white;
    background-color: transparent;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    margin-left: 0;
    /* Align with other list items */
}


/* Ensuring nested dropdown is aligned consistently */

.btn-toggle-nav>li>.btn-toggle {
    margin-left: 1.00rem;
    /* Add indentation for nested dropdown */
}


/* .btn-toggle:hover,
.btn-toggle:focus {
    color: rgba(0, 0, 0, .85);
    background-color: #d2d3d3;
} */

.btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
}


/* Styles for nav links within the toggle */

.btn-toggle-nav a {
    /* padding: .1875rem .5rem; */
    /* margin-top: .75rem;
    margin-left: 0.25rem; */
    display: block;
    /* color: inherit; */
    text-decoration: none;
}


/* .btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
    background-color: #d2d3d3;
    color: #000;
} */


/* Optional: Add a bit of styling for the li elements if needed */

.btn-toggle-nav li {
    margin-bottom: 0.25rem;
}

.fixed-table-toolbar {
    margin-top: -10px;
}

span.required {
    color: #e02612;
    font-size: 14pt;
    font-weight: 700;
    line-height: 1;
}

.container {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }
}