/* Download Buttons */
.wcde-dl-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.wcde-dl-list a.wcde-download-button {
    display: inline-flex;
    align-items: center;
    background: #f0f7f0;
    color: #78bc27;
    padding: 12px 18px;
    border: 1px solid #78bc27;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wcde-dl-list a.wcde-download-button:hover {
    background: #e0f0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wcde-dl-list a.wcde-download-button i {
    margin-right: 10px;
    font-size: 1.2em;
    color: #78bc27;
}

.wcde-dl-list a.wcde-download-button .file-size {
    margin-left: 10px;
    font-weight: normal;
    color: #666;
    font-size: 0.9em;
}

/* Specifications Tab Styling */
.wcde-specs-tab {
    background: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.wcde-specs-tab table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.wcde-specs-tab th {
    background: #f8f9fa;
    font-weight: 600;
}

.wcde-specs-tab th, 
.wcde-specs-tab td {
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    text-align: left;
}

.wcde-specs-tab tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Admin Interface */
.wcde-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    position: relative;
}

.wcde-row input[type=text], 
.wcde-row select {
    min-width: 250px;
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wcde-remove {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.wcde-remove:hover {
    background: #c0392b;
}

.wcde-sortable-placeholder {
    background: #f0f0f0;
    border: 1px dashed #ccc;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.wcde-drag-handle {
    cursor: move;
    color: #999;
    font-size: 18px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

.wcde-drag-handle:hover {
    color: #555;
}