/* File Download Button Styles */
.fdb-download-area {
    margin: 1em 0;
    font-family: sans-serif;
}

.fdb-download-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #0073aa; /* WP Blue */
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    text-decoration: none; /* In case it's wrapped in <a> sometimes */
    line-height: 1.5;
    vertical-align: middle;
}

.fdb-download-button:hover:not(:disabled) {
    background-color: #005177; /* Darker WP Blue */
}

.fdb-download-button:disabled {
    background-color: #a0a5aa; /* WP Gray */
    cursor: not-allowed;
    opacity: 0.7;
}

.fdb-countdown-text {
    margin-top: 8px;
    font-style: italic;
    color: #555d66; /* WP Text Gray */
    font-size: 0.9em;
    min-height: 1.2em; /* Prevent layout shift */
}