.bg-primary-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 5 31 / var(--tw-bg-opacity));
}

#csvContent {
  font-family: monospace; /* Monospaced font */
  white-space: pre-wrap; /* Preserve line breaks and whitespace */
  padding: 10px; /* Optional padding for better readability */
  border: 1px solid #ccc; /* Optional border */
  background-color: #f5f5f5; /* Optional background color */
  max-width: 600px; /* Optional: Limit the width for readability */
  min-height: 100px; /* Optional: Provide space for empty div */
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-height: 70%; /* Restrict maximum height */
    overflow: auto; /* Handle overflow for both axes */

}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.Ready, .Verified {
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.429;
    font-family: Roboto, system-ui, sans-serif;
    padding: 2px 15px;
    max-width: fit-content;
    min-width: 80px;
    text-align: center;
    background: rgb(34, 139, 34);
    color: rgb(255, 255, 255);
    border-radius: 4px;
  }

.NoQueries, .New {
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.429;
    font-family: Roboto, system-ui, sans-serif;
    padding: 2px 15px;
    max-width: fit-content;
    min-width: 80px;
    text-align: center;
    background: rgb(237, 141, 37);
    color: rgb(0, 0, 0);
    border-radius: 4px;
}

.Unprocessed {
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.429;
    font-family: Roboto, system-ui, sans-serif;
    padding: 2px 15px;
    max-width: fit-content;
    min-width: 80px;
    text-align: center;
    background: rgb(255, 200, 140);
    color: rgb(0, 0, 0);
    border-radius: 4px;
}

.Error {
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.429;
    font-family: Roboto, system-ui, sans-serif;
    padding: 2px 15px;
    max-width: fit-content;
    min-width: 80px;
    text-align: center;
    background: rgb(115, 16, 32);
    color: rgb(255, 255, 255);
    border-radius: 4px;
}

.TLS {
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.429;
    font-family: Roboto, system-ui, sans-serif;
    padding: 2px 15px;
    max-width: fit-content;
    min-width: 80px;
    text-align: center;
    background: repeating-linear-gradient(-45deg, rgb(45, 64, 78), rgb(45, 64, 78) 2px, rgb(28, 38, 45) 2px, rgb(28, 38, 45) 4px);
    color: rgb(255, 255, 255);
    border-radius: 4px;
}

.cell-container {
    display: flex;
    align-items: center; /* Vertically center elements */
    gap: 0px; /* Optional: space between elements */
}
