.my-table {
    width: 100%;
    height: auto;
    justify-content: center;
    border: 1px solid black;
}

.my-table-compact {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-grow: 1;
    border: 1px solid rgb(20, 20, 20);
    margin: 0 auto;
}

.my-compact-center-wrapper {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    margin: 0 auto;
}

.my-table-compact .left,
.my-table-compact .right {
    align-items: stretch;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 0;
    min-width: 0;
    padding: 8px;
}

.my-table-compact .left {
    border-right: 1px solid black;
}

.my-table-compact .my-rowpair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.my-table-compact .left .my-rowpair {
    border-bottom: 1px solid black;
}

.my-table-compact .left .my-rowpair,
.my-table-compact .right .my-rowpair {
  min-height: 60px;
}

.my-table-compact .right .my-rowpair div {
    overflow: hidden;
    text-overflow: ellipsis;
}

.my-table th {
    vertical-align: middle;
    height: 40px;
    padding: 0.5rem;
    border: 1px solid black;
}

.my-table th label {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.my-table th label span {
    white-space: nowrap;
    margin-right: 0.5rem;
}

.my-compact-center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.my-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    font-weight: bold;
}

.my-label.compact {
    cursor: default;
}

.my-span {
    font-weight: bold;
}

.my-input {
    width: 100%;
}

.my-clickable-row:hover {
    cursor: pointer;
    background-color: #ddd;
}

.my-row-nums-select {
    background-color: aliceblue;
}

.my-date-range {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.my-date-range .my-date-input {
    flex: 1;
}

.my-table-compact .my-date-range {
    flex-direction: column;
    gap: 4px;
}