.table-wrapper {
  margin-left: 15px;
  overflow-y: auto;
  overflow-x: auto;
  position: relative;
  max-height: 600px;
}

.table-wrapper > table > thead {
  position: sticky;
  top: 0;
  background-color: lightgray;
}

.non-selectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* user-drag: none; */
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
}
/* 
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th.dash-filter input {
  color: #ffffff !important;         
  background-color: #454545 !important; 
}

.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th.dash-filter input::placeholder {
  color: #ffffff !important;
} 
*/
/* Base styling applies to all screen sizes */
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner td,
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th {
    /* font-size: 12px; */
    min-width: 125px;
    max-width: 125px;
    padding: 5px;
}

/* For smaller screens, adjust the styles */
@media only screen and (max-width: 768px) {
    .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner td,
    .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th {
        font-size: 14px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        padding: 3px !important;
    }
}
.dash-table-container {
  width: 100%;
  overflow: auto;
}

.dash-spreadsheet-inner {
  width: 100% !important;
}

.g-1 {
  gap: 0.5rem !important;
}

html, body {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

html, body, .container-fluid {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.desktop-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 15px;  /* Reduced from default */
    min-height: 40px;   /* Set fixed height */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.desktop-header .nav-pills .nav-link {
    padding: 6px 12px;  /* Reduced padding */
    margin: 2px;
    font-size: 0.9rem;  /* Smaller font */
}

.content {
    margin-top: 250px;  /* Account for fixed header */
    padding: 20px;
    min-height: calc(100vh - 80px);
}

