.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: 60vh;
        height: 60vh;
        overflow-y: auto;
    }
}

/* Extra large screens */
@media screen and (min-height: 1000px) {
    .list-items-container {
        max-height: 65vh;
        height: 65vh;
        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;
    }
}

#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;
}
@media print {
    html, body {
        height: 100vh;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }
}

.table-with-even-rows {
    border-collapse: collapse;
    width: 100%;
  }

  .table-with-even-rows tr:nth-child(odd) {
    background-color: #1f1d30 !important; /* Set the background color for even rows */
  }

  .table-with-even-rows-white tr:nth-child(odd) {
    background-color: #f7f7f7 !important; /* Set the background color for even rows */
  }
