#customer_list {
    position: absolute;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 1000;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: #f0f0f0;
}
#results {
    list-style-type: none;
    padding-left: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
}

#results li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

#results li:last-child {
    border-bottom: none;
}

#results li:hover {
    background-color: #f1f1f1;
}


/* styles.css */

/* General styles */
/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */

/* Container for the settings form */
.settings-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     max-height: 110vh;
    width: 900px;
    margin-left: 100px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;

}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Title styling */
h1 {
    text-align: left;
    margin-bottom: 20px;
}

/* Individual setting item styling */
.setting-item {
    margin-bottom: 15px;
}

/* Label styling */
label {
    display: block;
    margin-bottom: 5px;
}

/* Text input and password input styling */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button styling */
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Button hover effect */
button:hover {
    background-color: #0056b3;
}
.sub-menu-dropdown> ul.nav.nav-treeview {
    /* CONTAIN-INTRINSIC-HEIGHT: AUTO 100PX; */
    display: block;
    border: 1px solid #d1caca;
    background: #e7e7e7;
    margin: 2px;
    padding: 4px;
}
.submenu-muliti-dropdown {
    height: 150px !important;
    overflow-y: scroll;
    width: auto;
    background: #fff;
    border: #e7e0e0 1px solid;
    margin: 3px;
    padding: 5px;
}

/* resources/css/app.css */


.dark-mode .settings-container{
    background-color: #343a40;
    color: #ffffff;
}


.nav-link {
    cursor: pointer;

}
