 .tabular-select {
     position: relative;
     width: 100%;
 }

 .tabular-select-btn {
     display: flex;
     justify-content: space-between;
     width: 100%;
 }

 .tabular-select-dropdown {
     display: none;
     position: absolute;
     width: 100%;
     max-height: 300px;
     overflow-y: auto;
     background-color: white;
     border: 1px solid #ccc;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
     z-index: 3;
 }

 .tabular-select-dropdown table {
     width: 100%;
     border-collapse: collapse;
 }

 .tabular-select-dropdown th,
 .tabular-select-dropdown td {
     padding: 4px;
     border: 1px solid #ddd;
 }

 .tabular-select-dropdown tr:hover {
     background-color: #f8f9fa;
     cursor: pointer;
 }

 .select-caret {
     border-color: #888 transparent transparent transparent;
     border-style: solid;
     border-width: 5px 4px 0 4px;
     margin-top: 10px;
 }

 .tabular-selected-value {
     text-align: left;
     white-space: nowrap;
     text-overflow: ellipsis;
     overflow: hidden;
 }