.download-button-container {
    text-align: center;
    margin: 2px 0;
    padding: 2px;
    margin-top:5px;
    margin-bottom:10px;
    border-radius: 8px;
}

.main-download-button {
    display: inline-block;
    padding: 8px 10px;
    background-color: #2a874b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-download-button:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.download-page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}
.main-download-button {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    
}

.main-download-button:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='22' height='22' fill='white'%3E%3Cpath d='M12 16l-5-5h3V4h4v7h3l-5 5zm8 4H4v-2h16v2z'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-top: -4px;
}


.download-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.download-item {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.download-item h3 {
    margin-top: 0;
    color: #333;
}

.download-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.download-item a strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}


.download-item a strong:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='white'%3E%3Cpath d='M12 16l-5-5h3V4h4v7h3l-5 5zm8 4H4v-2h16v2z'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    display: inline-block;
}


.download-item a {
    display: inline-block;
    padding: 10px 10px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 5px;
    transition: background-color 0.3s ease;
}

.download-item a:hover {
    background-color: #218838;
    color: white;
}

.entry-title a {
    text-decoration: none;
    color: #333;
}

.entry-title a:hover {
    color: #2a874b;
}
.nv-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

#neve-page-content {
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.nv-single-page-wrap {
    flex: 1;
    min-width: 0;
}

.nv-sidebar-wrap {
    width: 30%;
    min-width: 300px;
}

@media (max-width: 960px) {
    .wrap,
    .row {
        flex-direction: column;
    }
    
    .nv-sidebar-wrap {
        width: 100%;
    }
}

