body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1b2735, #090a0f);
}

.container {
    text-align: center;
    border: 2px solid #00b4d8;
    padding: 20px;
    border-radius: 10px;
    background-color: #14213d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container-voucher {
    text-align: center;
    border: 2px solid #00b4d8;
    padding: 20px;
    border-radius: 10px;
    background-color: #14213d;
    width: 75%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

p {
    color: #f1faee;
    font-size: 1.2em;
    margin-bottom: 20px;
}

#countdown {
    font-weight: bold;
    font-size: 1.5em;
    color: #a8dadc;
}

#continue-button {
    color: #f1faee;
    background-color: #457b9d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}

#continue-button:hover {
    background-color: #1d3557;
}

#voucher-button {
    color: #f1faee;
    background-color: #457b9d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}

#voucher-button:hover {
    background-color: #1d3557;
}

.input-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-left: 32px; /* Move it to the right by the size of the copy button */
}

.input-button-container input {
    width: 150px;
    margin-right: 1px;
    padding: 8px;
    font-size: 14px;
    border: 2px solid #457b9d;
    border-radius: 5px;
    background-color: #14213d;
    color: #f1faee;
    outline: none;
    text-align: center;
}

.copy-button {
    background: url('clipboard.svg') no-repeat center;
    background-size: 16px 16px;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    outline: none;
    filter: invert(1);
}

#vouchers-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line if there are too many vouchers */
    gap: 20px; /* Adds spacing between vouchers */
    justify-content: center; /* Centers the vouchers horizontally */
    width: 75%; /* Restricts the container to 75% of the screen width */
    margin: 0 auto; /* Centers the container horizontally */
}

.voucher {
    display: flex;
    flex-direction: column; /* Ensures the description is above the input and button */
    align-items: center; /* Centers the content within the voucher box */
    border: 2px solid #457b9d; /* Adds a border around the voucher */
    border-radius: 10px; /* Rounds the corners of the box */
    padding: 15px; /* Adds spacing inside the box */
    background-color: #14213d; /* Sets the background color of the box */
    color: #f1faee; /* Sets the text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
    width: 200px; /* Sets a fixed width for each voucher */
    margin: 10px; /* Adds spacing between vouchers */
}