.expanded-control{
    width:100%;
}
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(164, 138, 138, 0.2);
    z-index: 99999999;
}
.loader-container-small {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(231, 225, 225, 0.06);
    z-index: 9999;
}
/* Default maxHeight for small screens */
.list-items-container {
    max-height: 30vh; /* Adjust as needed */
    overflow-y: auto;
}

/* Medium screens */
@media screen and (min-height: 600px) {
    .list-items-container {
        max-height: 40vh;
        height: 40vh;
        overflow-y: auto;
    }
}

/* Large screens */
@media screen and (min-height: 800px) {
    .list-items-container {
        max-height: 50vh;
        height: 50vh;
        overflow-y: auto;
    }
}

/* Extra large screens */
@media screen and (min-height: 1000px) {
    .list-items-container {
        max-height: 55vh;
        height: 55vh;
        overflow-y: auto;
    }
}

/* Default maxHeight for small screens */
.selected-items-container {
    max-height: 50vh; /* Adjust as needed */
    overflow-y: auto;
}

/* Medium screens */
@media screen and (min-height: 600px) {
    .selected-items-container {
        max-height: 45vh;
        height: 45vh;
        overflow-y: auto;
    }
}

/* Large screens */
@media screen and (min-height: 800px) {
    .selected-items-container {
        max-height: 45vh;
        height: 45vh;
        overflow-y: hidden;
    }
}

/* Extra large screens */
@media screen and (min-height: 1000px) {
    .selected-items-container {
        max-height: 60vh;
        height: 60vh;
        overflow-y: auto;
    }
}
#printable table{
    width: 100%; font-size: 11px;
}
#printable table thead tr{
    border-bottom: 1px solid black;
    text-align: left;
    border-bottom: 1px solid black;
}
#printable .store{
    font-size: 12px;
}
#printable .company{
    font-size: 13px;
}
#printable .date-receipt,
#printable .address,
#printable .telephone,
#printable .developer,
#printable .message {
    font-size: 11px;
}
#printable .right{
    float: right;
}
#printable .developer, #printable .message{
    text-align: center;
}
