/* Center content */
.download-button-container, .download-page-container {
    text-align: center;
    padding: 20px;
}

/* Post title */
#postTitle {
    text-align: center;
    margin: 0 0 15px 0;
}

/* Download button */
.download-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    color: white;
    background: dodgerblue;
    font-weight: 600;
    cursor: pointer;
    margin: 10px;
}

.download-btn:hover {
    background: royalblue;
}

/* Countdown timer */
.timer {
    background: bisque;
    width: 60px;
    padding: 10px;
    font-size: 25px;
    border-radius: 50%;
    display: inline-block;
    margin: 10px 0;
}

/* Refresh message and fallback link */
#refresh {
    display: none;
    font-size: 18px;
    margin: 15px 0;
}

#re-download-btn {
    display: none;
    color: dodgerblue;
    text-decoration: none;
    font-weight: 600;
}

#re-download-btn:hover {
    color: royalblue;
}

/* Responsive design */
@media (max-width: 600px) {
    .timer {
        width: 50px;
        font-size: 20px;
    }
}