html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

table {
    font-size: smaller;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

table, th, td {
    border: 1px solid #aaaaaa;
    border-collapse: collapse;
    padding: 1px 5px; 
    color: black;
}

th {
    background-color: saddlebrown;
    color: white;
}



.max-div {
    max-width: 200px; /* Set your desired max width */
    width: 200px; /* Ensures content fits tightly when short */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.expand-td-style {
    border-right: none;
    font-weight: bolder;
    text-align: center;
}

.product-td-style {
    border-left: none;
}

.custom-header {
    border-right: none;
}

.div-10-space {
    padding-top: 5px;
    padding-bottom: 5px;
}

.row-even {
    background-color: #ffffd2;
}

.row-even-inner {
    background-color: #f8f8e2;
}

.row-odd {
    background-color: #f2fff2;
}

.row-odd-inner {
    background-color: #f1faf1;
}

tr:hover {
    cursor: default;
    filter: brightness(1.2); /* Lightens the row */
}

tr.selected {
    background-color: #88ffff; /* Selected color */
}

.td-price-border {
    border-left: 4px solid #aaaaaa;
}

.parent {
    position: relative;
    width: 130px;
    background: #88ff88;
}

.floatText {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 2;
}

.rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #ff8888;
    text-align: center;
    z-index: 1;
}

.buttonSmallOnTable {
    display: inline-block;
    padding: 0px 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    text-decoration: none;
    border: 1px solid #dddddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
    font-family: inherit;
}

.buttonStandard {
    display: inline-block;
    padding: 1px 20px;
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
    border: 1px solid #0056b3;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
    font-family: inherit;
}

.modelessDialogStyle {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #ffffee;
    border: 1px solid black;
    box-shadow: 5px 5px 5px 1px rgb(0 0 0 / 0.5);
    display: none;
    overscroll-behavior: contain;
}

.modelessDialogHeaderStyle {
    background-color: saddlebrown;
    min-height: 36px;
    vertical-align: middle;
    padding: 0 2px 0 8px;
}

.modelessDialogTitleStyle {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    vertical-align: middle;
    cursor: pointer;
}

.modelessDialogBodyStyle {
    padding: 5px 8px;
    width: 100%;
    height: 100%;
}


