/* Quick Compress - Standard UI styling */
*, *::before, *::after {
    box-sizing: border-box;
}

.qc-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #eef2f5;
    color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Header Config */
.qc-header {
    background-color: #00f0ff;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00d2ff;
}

.qc-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Workspace Grid Layout */
.qc-workspace {
    padding: 24px;
    display: block;
}

/* Drag and Drop Zone */
.qc-dropzone {
    background: #ffffff;
    border: 3px dashed #b0bec5;
    border-radius: 6px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    margin-bottom: 24px;
}

.qc-dropzone.dragover {
    background-color: rgba(0, 240, 255, 0.08);
    border-color: #00f0ff;
}

.qc-upload-icon {
    width: 48px;
    height: 48px;
    color: #607d8b;
    margin-bottom: 12px;
}

.qc-main-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #1a1a1a;
}

.qc-sub-text {
    font-size: 13px;
    color: #78909c;
    margin: 0 0 16px 0;
}

.qc-file-label {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.qc-file-label:hover {
    background-color: #333333;
}

/* Panel Settings Layout */
.qc-controls-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.qc-section-title {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    border-left: 4px solid #00f0ff;
    padding-left: 10px;
}

.qc-control-group {
    margin-bottom: 20px;
}

.qc-label-row {
    display: table;
    width: 100%;
    margin-bottom: 8px;
}

.qc-label-row label {
    display: table-cell;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.qc-label-row span {
    display: table-cell;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
    color: #008ba3;
}

/* Form Fields Styling */
.qc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
}

.qc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00f0ff;
    border: 2px solid #1a1a1a;
    cursor: pointer;
}

.qc-input, .qc-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 14px;
    background: #fafafa;
    color: #1a1a1a;
}

.qc-input:focus, .qc-select:focus {
    border-color: #00f0ff;
    outline: none;
    background: #ffffff;
}

/* Button UI Actions Row */
.qc-actions-row {
    margin-top: 24px;
    display: table;
    width: 100%;
}

.qc-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    margin-right: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.qc-btn-neon {
    background-color: #00f0ff;
    color: #1a1a1a;
    border: 1px solid #00d2ff;
}

.qc-btn-neon:hover:not([disabled]) {
    background-color: #00d2ff;
    box-shadow: 0 0 8px rgba(0,240,255,0.4);
}

.qc-btn-neon:disabled {
    background-color: #b0bec5;
    border-color: #b0bec5;
    color: #eceff1;
    cursor: not-allowed;
}

.qc-btn-secondary {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.qc-btn-secondary:hover {
    background-color: #d6d6d6;
}

/* Performance Dashboard Grid Table */
.qc-results-panel {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.qc-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.qc-results-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.qc-results-table th, .qc-results-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eceff1;
    vertical-align: middle;
}

.qc-results-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #546e7a;
}

.qc-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #cfd8dc;
    display: block;
}

.qc-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.qc-badge.qc-badge-spin {
    background-color: #fff3e0;
    color: #ef6c00;
}

.qc-action-link {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.qc-action-link:hover {
    background-color: #00f0ff;
    color: #1a1a1a;
}
