.download-section {
    margin-bottom: 40px;
}

.download-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.download-list {
    list-style: none;
    padding-left: 0;
}

.download-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-list li:last-child {
    border-bottom: none;
}

.download-list a {
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.download-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.download-description {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.download-version {
    font-size: 0.8em;
    color: #888;
    margin-left: 10px;
}

/* Style for the centered launch button */
.dataloader-online-image-container {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.dataloader-launch-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 123, 255, 0.85);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.95;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dataloader-launch-btn:hover,
.dataloader-launch-btn:active {
    background-color: rgba(0, 86, 179, 0.9);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    opacity: 1;
    text-decoration: none;
    color: white;
}

.download-item-info {
    flex-grow: 1;
}

.download-icon {
    margin-right: 10px;
    color: #007bff;
}

.dataloader-online-info {
    padding-left: 15px;
}

.dataloader-online-info h4 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.dataloader-online-info h5 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.dataloader-online-info ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.dataloader-online-info ul li.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0;
    border-bottom: none;
}

.advantage-icon {
    margin-right: 12px;
    font-size: 1.3em;
    color: #007bff;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 3px;
}

.advantage-text {
    flex-grow: 1;
}

.advantage-text strong {
    color: #333;
}

/* Animation for the launch button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.dataloader-launch-btn {
    animation: pulse 2s infinite;
}

/* Responsive styles for the launch button */
@media (max-width: 768px) {
    .dataloader-launch-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .dataloader-launch-btn {
        padding: 6px 16px;
        font-size: 12px;
        border-width: 1px;
    }
}
