.csv-sampler-form {
    margin: 1em 0;
}

.csv-sampler-download-button {
    background-color: #4CAF50; /* Green background */
    color: #ffffff; /* White text */
    padding: 12px 24px; /* Larger padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Larger text */
    cursor: pointer; /* Hand cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
    line-height: 1.5; /* Improved readability */
}

.csv-sampler-download-button:hover:not(:disabled) {
    background-color: #45a049; /* Darker green on hover */
}

.csv-sampler-download-button:disabled {
    background-color: #cccccc; /* Grey when disabled */
    color: #666666; /* Darker text for contrast */
    cursor: not-allowed; /* Not-allowed cursor */
}

.csv-sampler-countdown {
    font-weight: bold;
    color: #333;
}

@media (max-width: 600px) {
    .csv-sampler-download-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}