/* styles.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.input-container {
    margin-bottom: 20px;
    text-align: center;
}

.input-container label {
    font-size: 18px;
    color: #333;
    margin-right: 10px;
}

.input-container input {
    font-size: 18px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 80px;
    text-align: center;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button:active {
    background-color: #004494;
    transform: scale(1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#currentToken {
    margin-top: 20px;
    text-align: center;
}

#currentToken h2 {
    font-size: 1.5em;
    color: #333;
}

#currentToken p {
    font-size: 1.2em;
    color: #007bff;
    font-weight: 600;
}

#summary-container {
    margin-top: 30px;
    text-align: center;
}

#summary {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#status {
    margin-top: 10px;
    font-size: 18px;
    color: #28a745; /* Color for 'Testing complete!' */
}

#summary span {
    display: block;
    margin: 5px 0;
}

#summary .valid {
    color: #28a745; /* Color for valid tokens */
}

#summary .invalid {
    color: #dc3545; /* Color for invalid tokens */
}

table {
    width: 90%;
    max-width: 800px;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: #fff;
    font-size: 1.2em;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

/* styles.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.input-container {
    margin-bottom: 20px;
    text-align: center;
}

.input-container label {
    font-size: 18px;
    color: #333;
    margin-right: 10px;
}

.input-container input {
    font-size: 18px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 80px;
    text-align: center;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button:active {
    background-color: #004494;
    transform: scale(1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#currentToken {
    margin-top: 20px;
    text-align: center;
}

#currentToken h2 {
    font-size: 1.5em;
    color: #333;
}

#currentToken p {
    font-size: 1.2em;
    color: #007bff;
    font-weight: 600;
}

#summary-container {
    margin-top: 30px;
    text-align: center;
}

#summary {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#status {
    margin-top: 10px;
    font-size: 18px;
    color: #28a745; /* Color for 'Testing complete!' */
}

#summary span {
    display: block;
    margin: 5px 0;
}

#summary .valid {
    color: #28a745; /* Color for valid tokens */
}

#summary .invalid {
    color: #dc3545; /* Color for invalid tokens */
}

table {
    width: 90%;
    max-width: 800px;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: #fff;
    font-size: 1.2em;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    margin-bottom: 20px;
}

.input-container {
    margin: 10px 0;
}

input {
    padding: 5px;
    margin-left: 10px;
    width: 100px;
}

button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
}

button#start {
    background-color: #4CAF50; /* Green */
}

button#pause {
    background-color: #FF9800; /* Orange */
}

button#stop {
    background-color: #F44336; /* Red */
}

#currentToken, #summary-container {
    margin: 20px 0;
}

table {
    margin-top: 20px;
    border-collapse: collapse;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

#status {
    font-weight: bold;
}

.valid {
    color: green;
}

.invalid {
    color: red;
}

.hidden {
    display: none;
}

.button-group {
    margin: 20px 0;
}

#individualTokenContainer {
    margin-top: 20px;
}