/* ACF Excel Table Frontend Styles */

.excel-table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.excel-table__row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.excel-table__row:last-child {
    border-bottom: none;
}

.excel-table__header,
.excel-table__cell {
    flex: 1;
    padding: 12px 16px;
    border-right: 1px solid #e0e0e0;
    min-width: 100px;
    word-wrap: break-word;
}

.excel-table__header:last-child,
.excel-table__cell:last-child {
    border-right: none;
}

.excel-table__header {
    font-weight: 600;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
}

.excel-table__cell {
    background: white;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .excel-table__row {
        flex-direction: column;
    }
    
    .excel-table__header,
    .excel-table__cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .excel-table__header:last-child,
    .excel-table__cell:last-child {
        border-bottom: none;
    }
}

