label {
    font-weight: bolder;
}

.custom-item {
    color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 200px;
    background-color: #fca409;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
}

.light-custom-item {
    background-color: #FFCC9A;
}

.custom-item:hover {
    transform: scale(1.2);
    color: white;
}

.custom-item:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

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

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

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

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

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

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

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.hidden-label {
    background-color: #FCFCFC;
    color: #FCFCFC;
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.square-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 95px;
    text-align: center;
    font-size: larger;
    border-radius: 5px;
    margin: 5px;
}

.small-square-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    text-align: center;
    font-size: larger;
    border-radius: 5px;
    margin: 5px;
}

.hr {
    height: 1px;
    width: 100%;
}

.bg-blue {
    background-color: dodgerblue;
}

.bg-orange {
    background-color: #eb732f;
}

.bg-green {
    background-color: #1c6925;
}

.bg-salesperson {
    background-color: gray;
}

.bg-salesperson:active {
    color: gray;
}

.bg-hold {
    background-color: goldenrod;
}

.bg-hold:active {
    color: goldenrod;
}

.bg-recall {
    background-color: dodgerblue;
}

.bg-recall:active {
    color: dodgerblue;
}

.bg-clear {
    background-color: red;
}

.bg-clear:active {
    color: red;
}

.bg-close {
    background-color: springgreen;
}

.bg-close:active {
    color: springgreen;
}

.bg-pay {
    background-color: #155f82;
}

.bg-pay:active {
    color: #155f82;
}

.bg-print {
    background-color: rebeccapurple;
}

.bg-print:active {
    color: rebeccapurple;
}

.bg-actions {
    color: white;
    border-radius: 5px;
    padding: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bg-actions:active {
    background-color: transparent;
    color: inherit;
    border: 2px solid;
}

.bg-salesperson h3,
.bg-hold h3,
.bg-recall h3,
.bg-clear h3,
.bg-print h3,
.bg-pay h3,
.bg-close h3 {
    color: inherit;
}

.square-paybtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    text-align: center;
    margin-right: 0rem !important;
    font-size: medium !important;
    border-radius: 0.35rem;
}

.square-paybtn.active {
    border: 2px solid #fca409;
    background-color: transparent !important;
    color: #fca409;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bg-card-container-items {
    background-color: #FFEAD7;
}

.breadcrumb {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background-color: #f0f0f0;
    margin-top: -60px;
    /*left: 0;*/
}

table.no-style {
    all: revert;
    border: none !important;
    margin: 0 !important;
}

table.no-style th,
table.no-style td {
    all: revert;
    padding: 0 !important;
    border: none !important;
}

#transactionTable td,
#transactionTable th {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#transactionTable td:hover,
#transactionTable th:hover {
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}
