body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;       
    margin: 0;
    background-color: #f0f0f0;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    flex: 1;                 
}

.logo {
    width: 250px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin-bottom: 20px;
}

.hash-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.hide-uint td:nth-child(3),
.hide-uint th:nth-child(3) {
    display: none;
}
.uint-toggle-btn {
    background-color: #E9E9ED;
    border: 1px solid #ccc;
    color: #333;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 10px;
}

.uint-toggle-btn:hover {
    background-color: #dcdce0;
}

.status-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #E9E9ED;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden; 
}

.status-table td {
    padding: 12px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #d1d1d1;
    background-color: #E9E9ED;
}

.status-table tr:last-child td {
    border-bottom: none;
}

.status-table tr:first-child td {
    font-weight: bold;
    background-color: #dcdce0; 
}


.hash-table-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow-x: auto; 
}
.status-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px; /* Space above the Generate button */
}

.status-table td {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    font-size: 14px;
    color: #333;
}
.hash-table-container h3 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.hash-data-table {
    width: 100%;
    border-collapse: collapse;
}

.hash-data-table th, .hash-data-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    white-space: nowrap;
}

.hash-data-table th {
    background-color: #e0e0e0;
    font-weight: bold;
}

.hash-data-table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.hash-data-table td input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.disclaimer {
    margin: 20px 0;
    max-width: 1000px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #555;
}

.dropdown {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #E9E9ED;
    appearance: none;
}


.dropdown-container {
    margin-top: 20px;
    position: relative;
}

.checkbox-dropdown {
    margin: 10px 0;
    padding: 10px;
    width: 93%;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #E9E9ED;
    cursor: pointer;
    text-align: left;
}

.checkbox-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 1;
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.checkbox-dropdown-content label {
    display: block;
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.checkbox-dropdown-content label.checked {
    background-color: #E9E9ED;
}

.show {
    display: block;
}

.submit-button {
    margin-top: 20px;
    padding: 15px 0;
    font-size: 16px;
    color: white;
    background-color: green;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: darkgreen;
}

.download-box {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: max-content;     /* grows to fit table */
    max-width: 90vw;        /* but never exceeds screen */
    margin-top: 30px;
    display: none;
}


.download-button {
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-all-button {
    margin-top: 10px;
    padding: 12px 0;
    font-size: 16px;
    color: white;
    background-color: green;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.download-all-button:hover {
    background-color: darkgreen;
}