.download-section {
    margin: 30px auto;
    padding: 25px;
    max-width: 600px;
    /* Background removed as requested */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.download-button {
    margin: 10px auto;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    background: #3171A5;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    border: none;
    display: block; /* Block for centering */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.download-button:hover {
    background: #2a5d8a; /* Darker shade for hover */
    color: #fff;
    text-decoration: none;
}

.download-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Bold text with lighter color */
.download-count {
    display: block;
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 14px;
    color: #888; /* Lighter color as requested */
    font-weight: bold; /* Bold as requested */
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Make the counter number stand out even more */
.download-count span {
    color: #3171A5; /* Matching the button color */
    font-size: 16px;
}

/* For admin panel file inputs */
#download-files-table input[type="text"] {
    width: 100%;
}

.file-url {
    width: calc(100% - 110px);
    margin-right: 5px;
}