/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%; /* Full width of the main content area */
    text-align: left; /* Left-align all text */
}

h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

#downloadButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    width: 100%; /* Ensure the button spans the full width */
}

#downloadButton:hover {
    background-color: #0056b3;
}

.timer-box {
    margin-top: 15px;
    font-size: 1em;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    display: none; /* Hidden initially */
}