@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: rgba(180, 0, 170, 1);
  --highlight-selected-bg-color: rgba(0, 100, 0, 1);
}

@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}

[data-main-rotation='90'] {
  transform: rotate(90deg) translateY(-100%);
}
[data-main-rotation='180'] {
  transform: rotate(180deg) translate(-100%, -100%);
}
[data-main-rotation='270'] {
  transform: rotate(270deg) translateX(-100%);
}

.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}

.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}

.textLayer.selecting .endOfContent {
  top: 0;
}

.hiddenCanvasElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: none;
}

/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}

@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }

  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}

.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}

.annotationLayer[data-main-rotation='90'] .norotate {
  transform: rotate(270deg) translateX(-100%);
}
.annotationLayer[data-main-rotation='180'] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}
.annotationLayer[data-main-rotation='270'] .norotate {
  transform: rotate(90deg) translateY(-100%);
}

.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}

.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}

.textLayer.selecting ~ .annotationLayer section {
  pointer-events: none;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}

.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}

.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}

.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}

.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor))
    rgba(136, 136, 136, 1);
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}

.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}

.annotationLayer .popupContent {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}

/* Advanced MUI-like styling for TanStack Table */

/* Import Roboto font for MUI-like look */
/* Import Material Icons */
/* Container styling */
.mui-table-container {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  border: 1px solid #d0d0ce;
}

/* Directory navigation */
.mui-directory-nav {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.mui-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.breadcrumb-item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0px;
  color: #26890d;
  text-align: left;
}
.breadcrumb-item.active {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #000;
}

.breadcrumb-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}

.breadcrumb-separator {
  margin: 0 4px;
  color: rgba(0, 0, 0, 0.4);
}

/* Toolbar styling */
.mui-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.mui-toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mui-table-toolbar h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.selected-count {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #26890d;
  font-weight: 500;
  background-color: rgba(25, 118, 210, 0.08);
  padding: 4px 12px;
  border-radius: 16px;
}

.mui-table-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

/* Search input styling */
.mui-search {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 6px 12px;
}

.mui-search input {
  border: none;
  background: transparent;
  margin-left: 8px;
  outline: none;
  font-size: 0.875rem;
  min-width: 180px;
}

.mui-search .material-icons {
  color: rgba(0, 0, 0, 0.54);
  font-size: 20px;
}
/* Button styling */
.mui-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.mui-button-primary {
  background-color: #26890d;
  color: white;
}

.mui-button-primary:hover {
  background-color: #1565c0;
}

.mui-button-secondary {
  background-color: white;
  color: #26890d;
  border: 1px solid rgba(25, 118, 210, 0.5);
}

.mui-button-secondary:hover {
  background-color: rgba(25, 118, 210, 0.04);
  border: 1px solid #26890d;
}

.mui-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
  transition: background-color 0.3s;
}

.mui-icon-button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.mui-icon-button:disabled {
  color: rgba(0, 0, 0, 0.26);
  cursor: default;
}

.mui-icon-button .material-icons {
  font-size: 20px;
}
.material-icons {
  font-size: 20px;
}
.mui-table-wrapper {
  overflow: auto;
  flex: 1;
  min-height: 0;
  position: relative;
  max-height: 500px;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
  scrollbar-color: #7d7d7d #f5f5f5;
  scroll-behavior: smooth;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y proximity;
  transition: scroll 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mui-table-wrapper::-webkit-scrollbar-button {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  background-color: transparent !important;
}

/* Table styling */
.mui-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* Header styling */
.mui-table thead {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mui-table th {
  padding: 16px 8px;
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  white-space: nowrap;
  transition:
    background-color 0.3s,
    color 0.3s;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}

.mui-table th.header-active {
  background-color: #f2f7e9;
}

/* New header button styling */
.header-button {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}

.mui-table th.table-header:hover {
  background-color: #f2f7e9;

  .header-button {
    color: #26890d;
  }
}

.header-button-active {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #26890d;
  cursor: pointer;
  text-align: left;
}

.header-button span,
.header-button-active span {
  margin-right: 4px;
}

.mui-table th.not.select {
  width: 32px;
}
.mui-table th.sortable {
  cursor: pointer;
}
.mui-table th.sortable.name {
  width: 40%;
}
.mui-table th.sortable.size {
  width: 15%;
}
.mui-table th.sortable.lastModified {
  width: 15%;
}
.mui-table th.sortable.createdBy {
  width: 15%;
}

.mui-table th.not.actions {
  width: 8%;
}
.th-content {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.sort-icon {
  display: flex;
  align-items: center;
}

.sort-icon .material-icons {
  font-size: 18px;
}

.sort-inactive {
  opacity: 0.3;
}

/* Row styling */
.mui-table-row {
  transition: background-color 0.15s;
}

.mui-table-row:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.folder-row {
  cursor: pointer;
}

.mui-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}
/* File cell styling */
.file-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.file-name {
  font-weight: 400;
}
.file-name.folder {
  font-weight: 400;
  color: #26890d;
}
.expand-button {
  margin-left: auto;
}

/* Empty folder styling */
.empty-folder {
  text-align: center;
  height: 200px;
}

.empty-folder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(0, 0, 0, 0.4);
}

.empty-folder-content .material-icons {
  font-size: 48px;
  margin-bottom: 8px;
}

/* Expanded row content */
.expanded-row {
  background-color: #f9f9f9;
}

.expanded-row td {
  padding: 0;
  background-color: #f9f9f9;
}

/* Excel sheets container */
.excel-sheets-container {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.excel-sheets-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0px;
}
.mui-button.mui-button-secondary.sheet-select-all {
  margin-right: 8px;
}
.sheet-name-button {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  margin-left: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}
.sheet-select-all {
  margin-left: auto;
  font-size: 0.75rem !important;
  padding: 2px 8px !important;
  min-height: 28px;
}
.excel-list-container {
  display: flex;
  gap: 8px;
}
.excel-sheets-list {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 4px 0 4px;
}
.excel-sheet-continue {
  margin-right: 8px;
  border-radius: 4px;
  align-self: flex-end;
  gap: 10px;
  color: #fff;
  background-color: #26890d;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16.34px;
  letter-spacing: 0.2px;
}
.excel-sheet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0px;
}
.mui-checkbox.sheet-checkbox {
  width: 16;
  height: 16;
  border-radius: 3px;
  border-width: 1px;
  border: 1px solid #63666a;
  border-color: #63666a;
}
.mui-checkbox.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.disabled:hover {
  background-color: #f5f5f5 !important;
}
.excel-sheet-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}

.excel-sheet-item.selected {
  background-color: rgba(25, 118, 210, 0.08);
  border-color: rgba(25, 118, 210, 0.5);
  color: #26890d;
}

.sheet-checkbox {
  margin: 0;
}

.sheet-icon {
  font-size: 16px;
  color: #4caf50;
}

.excel-sheet-item.selected .sheet-icon {
  color: #26890d;
}

.sheet-name {
  font-size: 0.875rem;
  cursor: pointer;
}

/* Checkbox styling */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mui-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #63666a;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  appearance: none;
  background-color: transparent;
  margin: 0;
}

.mui-checkbox:checked {
  background-color: #26890d;
  border-color: #26890d;
}

.mui-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.mui-checkbox:indeterminate {
  background-color: #26890d;
  border-color: #26890d;
}

.mui-checkbox:indeterminate::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 2px;
  background-color: white;
}

/* Action buttons in rows */
.action-buttons {
  display: flex;
  gap: 4px;
}

/* Pagination styling */
.mui-table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.87);
  border-top: 1px solid rgba(224, 224, 224, 1);
  background-color: #fff;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.mui-rows-per-page {
  display: flex;
  align-items: center;
  margin-right: 32px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}

.mui-rows-per-page span {
  margin-right: 8px;
}

.mui-rows-per-page select {
  margin-left: 8px;
  border: none;
  background-color: transparent;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  padding: 4px 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}
.mui-rows-per-page select option {
  padding: 8px;
  background-color: white;
  transition: background-color 0.2s ease;
}
.mui-icon-button.pagination {
  color: #1f1f1f !important;
}
.mui-icon-button.pagination:disabled {
  color: #a7a8aa !important;
}
.mui-rows-per-page select option:hover {
  background-color: #f5f5f5;
  color: #26890d;
}
.mui-pagination-info {
  margin-right: 32px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
}

.mui-pagination-actions {
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mui-table-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mui-table-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .mui-search {
    width: 100%;
  }

  .mui-search input {
    width: 100%;
  }

  .excel-sheets-list {
    flex-direction: column;
  }

  .mui-table-pagination {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mui-rows-per-page,
  .mui-pagination-info {
    margin-right: 0;
  }
}

