.input-group {
    display: flex;
    justify-content: center;
    gap: 10px; /* Provides space between the boxes */
    margin-bottom: 20px;
}


.digit-input {
    width: 60px;
    height: 80px; /* Ensure sufficient height for the font size */
    font-size: 3em;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1; /* Set a tight line height */
    padding-top: 5px; /* Add a bit of top padding */
    padding-bottom: 5px; /* Add a bit of bottom padding */
}


.digit-input:focus {
    border-color: #1a237e;
    box-shadow: 0 0 8px rgba(26, 35, 126, 0.4);
    outline: none;
}

/* Hide the up/down arrows on number inputs */
/* For Chrome, Safari, Edge, Opera */
.digit-input::-webkit-outer-spin-button,
.digit-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* For Firefox */
.digit-input[type=number] {
    -moz-appearance: textfield;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f4f6f8;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.timeclock-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

h1 {
    color: #1a237e;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.employee-id-input {
    width: 100%;
    padding: 15px;
    font-size: 2.5em;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.employee-id-input:focus {
    border-color: #1a237e;
    outline: none;
}

.clock-button {
    width: 100%;
    padding: 20px;
    font-size: 1.8em;
    color: #ffffff;
    background-color: #3f51b5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clock-button:hover {
    background-color: #303f9f;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.footer-links a {
    color: #1a237e;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

#status-message {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #4caf50;
    min-height: 25px; /* Ensures space is reserved for the message */
}
