body, html {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}

table, tr, td {
    border: 1px inset #e2e2e2;;
    border-collapse: collapse;
    border-spacing: 0;
}

/* Styling for table cells */
th, td {
    padding: 1px 4px;
    text-align: left;
    min-height: 17px;
}

td:not(.rowNumber, .corner-triangle) {
    height: 17px;
    min-width: 63px;
}

/* Highlight on hover */
td:hover {
    background-color: #eefcf4;
}

/* Styling for selected items */
.selected {
    border: 2px solid #217346;
}

/* More general styling for tables */
table {
    border: 1px inset #e2e2e2;
    border-collapse: collapse;
    border-spacing: 0;
   
}

/* Styling for specific table elements */
.rowNumber, .alphabet {
    background: #eeeeee;
    border: 1px solid #8a8a8a;
    font-size: 13px;
}

.rowNumber {
    max-width: 10px;
    width: 1%;
    text-align: right;
    padding-left: 0.6rem;
    padding-right: 1rem;
    vertical-align: bottom;
}

.alphabet {
    text-align: center;
}

/* Border change on hover for specific table elements */
.rowNumber:hover, .alphabet:hover {
    border: 1px solid rgb(10, 109, 23);
}

td:hover {
    border: 1px solid rgb(10, 109, 23);
}

.corner-triangle {
    text-align: right; 
  width: 1% ;
  padding-right: 0.35rem;
}

.tab {
    background: #eeeeee;;
    position: fixed;
    bottom: 0;
    padding: 0.3rem 5rem;;
    width: 100%;
}

.tablinks {
    padding: 0.3rem 0.8rem 0.6rem 0.8rem;
    display: inline-flex;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    border-radius: 0.2rem;
}

.tablinks.active {
    text-decoration: underline;
    text-decoration-color:  rgb(10, 109, 23);
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    background-color: white;

}

.tablinks:not(:last-child) {
    border-right: 1px solid #e2e2e2;;
}

.tablinks:hover:not(.active) {
    background-color: white;
    text-decoration: underline;
    text-decoration-color: #e2e2e2;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}


.excel_header {
    background-color: #107c41;
    height: 50px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

table {
    overflow: scroll;
}

.search-container {
    margin: 0 auto;
    position: relative;
}
  
  .searchbar {
    padding-left: 40px;
    padding-right: 10px;
    padding-bottom: 3px;
    height: 30px; 
    width: 466px;
    background: #9fc7b1;
    margin: 0 auto;
    border: none;
    border-radius: 0.2rem;
    color: #107c41;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;;
  }

  .searchbar:focus-visible {
    background: white;;
    outline: none;
  }
  
  .search-icon {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    /* Use a specific icon font or image here. Example uses a Unicode character */
    content: '🔍';
    pointer-events: none; /* Makes the icon non-interactive */
  }

  .search-icon svg path {
    fill: #107c41;
  }

  /* .excel_wrapper {
    overflow: hidden;
  } */