.gwr-pro-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.gwr-pro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.gwr-pro-upload-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}
.gwr-pro-upload-card {
    max-width: 550px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
}
.gwr-pro-upload-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 25px 45px -12px rgba(102, 126, 234, 0.25);
}
.gwr-pro-upload-card.dragover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
    transform: scale(0.98);
}
.gwr-pro-upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.gwr-pro-upload-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}
.gwr-pro-upload-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gwr-pro-upload-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 25px;
}
.gwr-pro-upload-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gwr-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f1f5f9;
    border-radius: 30px;
    font-size: 12px;
    color: #475569;
    font-weight: 500;
}
.gwr-pro-badge svg {
    width: 14px;
    height: 14px;
}
.gwr-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}
.gwr-pro-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.gwr-pro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
.gwr-pro-btn-gradient {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}
.gwr-pro-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 153, 142, 0.4);
}
.gwr-pro-btn-ghost {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
}
.gwr-pro-btn-ghost:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}
.gwr-pro-results-section {
    padding: 20px;
    animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.gwr-pro-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}
.gwr-pro-results-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.gwr-pro-results-title h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}
.gwr-pro-results-count {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}
.gwr-pro-results-actions {
    display: flex;
    gap: 12px;
}
.gwr-pro-queue-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}
.gwr-pro-queue-list {
    max-height: 500px;
    overflow-y: auto;
}
.gwr-pro-queue-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.2s;
}
.gwr-pro-queue-item:last-child {
    border-bottom: none;
}
.gwr-pro-queue-item:hover {
    background: #fafcff;
}
.gwr-pro-queue-preview {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
}
.gwr-pro-queue-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gwr-pro-queue-info {
    flex: 1;
    min-width: 0;
}
.gwr-pro-queue-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gwr-pro-queue-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 500;
}
.gwr-pro-queue-status.pending {
    background: #fef3c7;
    color: #d97706;
}
.gwr-pro-queue-status.processing {
    background: #e0e7ff;
    color: #4f46e5;
}
.gwr-pro-queue-status.completed {
    background: #d1fae5;
    color: #059669;
}
.gwr-pro-queue-status.error {
    background: #fee2e2;
    color: #dc2626;
}
.gwr-pro-progress-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}
.gwr-pro-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 4px;
}
.gwr-pro-btn-small {
    padding: 8px 18px;
    font-size: 13px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.gwr-pro-btn-small:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}
.gwr-pro-btn-small svg {
    width: 14px;
    height: 14px;
}
.gwr-pro-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 15px;
}
.gwr-pro-queue-list::-webkit-scrollbar {
    width: 5px;
}
.gwr-pro-queue-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.gwr-pro-queue-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
@media (max-width: 640px) {
    .gwr-pro-upload-card { padding: 35px 25px; }
    .gwr-pro-upload-title { font-size: 22px; }
    .gwr-pro-upload-badges { flex-direction: column; align-items: center; }
    .gwr-pro-results-header { flex-direction: column; align-items: stretch; text-align: center; }
    .gwr-pro-results-actions { justify-content: center; }
    .gwr-pro-queue-item { flex-wrap: wrap; }
    .gwr-pro-queue-info { width: calc(100% - 83px); }
}