*{
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word; 
}

.container {
    max-width: 1700px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

.back-btn{
    padding: 0.3rem;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #f4f4f9;
    font-size: 30px;
}

.back-btn:hover{
    background-color: #f9f9f9;

}

#searchBar {
    display: block;
    margin: 20px auto;
    width: 97.5%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.table-container {
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    max-width: 300px;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-left: 0.5px solid #ccc;
}

th {
    background-color: #f4f4f9;
}

tr:hover {
    background-color: #f9f9f9;
}

.highlight {
    background-color: #fffae6 !important;
}

.highlight2 {
    background-color: #bdf8a5 !important;
}

table thead th {
    position: sticky;
    top: 0;
    background-color: #f4f4f9;
    z-index: 1;
    border-bottom: 1px solid #ddd;
}

.strike-through {
    text-decoration: line-through;
    opacity: 0.6; 
}

#summarySection {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.btn{
    align-items: center;
    background-color: #f4f4f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;

}

.btn:hover,
.btn:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.btn-adjust{
    margin-top:1rem;
    display: flex;
    justify-content: center;
}

