.wc-custom-downloads-wrapper {
    margin: 20px 0;
}

.wc-download-accordion-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.wc-download-accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wc-download-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.wc-download-accordion-header:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.wc-download-accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.wc-accordion-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.wc-download-accordion-header.active .wc-accordion-icon {
    transform: rotate(180deg);
}

.wc-download-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.wc-download-accordion-content.active {
    max-height: 2000px;
}

.wc-downloads-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.wc-downloads-table thead {
    background: #f0f0f0;
}

.wc-downloads-table th,
.wc-downloads-table td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #e0e0e0;
}

.wc-downloads-table th {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.wc-downloads-table td {
    font-size: 14px;
    color: #666;
}

.wc-downloads-table tbody tr:last-child td {
    border-bottom: none;
}

.wc-download-button {
    background: #667eea;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 13px;
}

.wc-download-button:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .wc-downloads-table {
        font-size: 12px;
    }
    
    .wc-downloads-table th,
    .wc-downloads-table td {
        padding: 10px 8px;
    }
    
    .wc-download-accordion-header h3 {
        font-size: 14px;
    }
}
