input[type="range"]::-webkit-slider-thumb {
    height: 2px;
    cursor: pointer;
    z-index: 2;
}

button {
    outline: none !important;
}

td,
th {
    text-align: center;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.activeBar {
    box-shadow: inset 0.1875rem 0 0 #FB773C;
    background-color: #fbfbfb;
    color: #FB773C !important;
}

.activeBar > .nav-link > i {
    color: #FB773C !important;
}

.activeBar > .nav-link > span {
    color: #FB773C !important;
}

.modal-body td {
    text-align: left;
}

a {
    cursor: pointer;
}

input[type="range"]::-moz-range-track {
    background-color: #add8e6;
}

input[type="range"] {
    -webkit-appearance: none;
    background: #add8e6;
    height: 3px;
    padding-right: 0px;
}

input[type="range"]::-moz-range-thumb {
    -moz-appearance: none !important;
    appearance: none !important;
    position: relative;
    height: 10px;
    width: 10px;
    background: #ffffff;
    cursor: pointer;
    z-index: 2;
}

input {
    border: none;
}

.loading {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1051;
  }

.contact-support {
    width: 95%;
    height: 50px;
    position: absolute;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-support a {
    color: #0054a5 !important;
    text-decoration: none !important;
}

.headset-icon {
    stroke: #0054a5;
    width: 16px;
    margin-right: 10px;
}

.contact-support-title {
    color: #0054a5;
    margin: 0;
    display: inline;
    font-size: 12px;
}

.restaurant-select-label {
    color: rgba(0, 0, 0, 0.5);
    margin: 0px 10px;
    align-self: center;
}

.restaurant-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-right: 25px;
    align-self: center;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23ccc'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E"); /* use svg arrow icon */
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 20px;
    padding: 5px 35px 5px 5px;
}

.nav-item:hover > .nav-link {
    color: #FB773C !important;
    transition: background-color 0.3s ease;
}

.nav-item:hover > .nav-link > .material-icons {
    color: #FB773C !important;
    transition: background-color 0.3s ease;
}

.restaurant-select:focus {
    outline: none;
}

.primary-btn {
    background-color: #FB773C;
}

.primary-btn:hover {
    background-color: #AD5229;
}

.primary-btn.disabled {
    background-color: #AD5229;
}

.danger-btn {
    background-color: rgb(225, 0, 0);
}

.danger-btn:hover {
    background-color: rgb(110, 0, 0);
}

.danger-btn.disabled {
    background-color: rgb(110, 0, 0);
}

.card {
    box-shadow: none;
    border: 1px solid #ccc;
    padding: 30px;
  }

.card h4 {
    font-weight: 500;
    color: black;
  }

.light-btn {
    color: black !important; 
    background-color: #d5d5d5;
}

.light-btn:not(.disabled):hover {
    background-color: #ddd;
}

.zen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 100px;
    color: white;
    padding: 6px 18px;
    transition: 0.1s ease-in;
}

.fa-spin {
    z-index: 1;
    color: #FB773C;
  }

.visually-hidden {
    display: none;
}

/* Default styles for nav-link */
.nav-wrapper .nav-link {
    position: relative; /* Relative positioning for pseudo-element */
    padding-left: 20px; /* Space for the left bar */
    transition: all 0s ease; /* Smooth transition */
}

/* Pseudo-element for the left bar */
.nav-link:not(.dropdown-toggle)::before {
    content: ''; /* Necessary to create a pseudo-element */
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px; /* Width of the bar */
    background-color: transparent; /* Default transparent color */
    transition: background-color 0s ease; /* Smooth transition */
}

.nav-link:not(.dropdown-toggle)::after {
    content: ''; /* Necessary to create a pseudo-element */
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px; /* Width of the bar */
    background-color: transparent; /* Default transparent color */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover effect for the nav-link */
.nav-link:not(.dropdown-toggle):hover {
    background-color: #FB773C; /* Orange background color on hover */
    color: white; /* Change text color to white on hover */
}

/* Hover effect for the left bar */
.nav-link:not(.dropdown-toggle):hover::before {
    background-color: #FB773C; /* Change left bar color to orange on hover */
}

.nav-link:not(.dropdown-toggle):hover::after {
    background-color: #FB773C; /* Change left bar color to orange on hover */
}
 td {
    border-bottom: 1px solid #e0e0e0;
  }
.secondary-btn {
  border: 1px solid #FB773C;
  background-color: white; 
  color: #FB773C
}

button:disabled,
button[disabled] {
    background-color: #d6d6d6; /* Gray background */
    color: #a0a0a0; /* Lighter gray text */
    cursor: not-allowed; /* Show "not allowed" cursor */
    border: 1px solid #ccc; /* Optional: lighter border */
    opacity: 0.65; /* Optional: slight transparency */
}