/* =====================================================
   WaterMark Pro - Stylesheet v2.0
   ===================================================== */

/* CSS Variables - Theme Colors */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.light-theme {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e8e8e8;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* =====================================================
   Main Container
   ===================================================== */
.main-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    min-height: calc(100vh - 76px);
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Settings Panel (Left)
   ===================================================== */
.settings-panel {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    max-height: calc(100vh - 76px);
    padding-bottom: 100px;
}

.panel-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    z-index: 10;
}

.panel-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header h2 i {
    color: var(--accent-primary);
}

.panel-actions {
    display: flex;
    gap: 8px;
}

/* Settings Sections */
.settings-section {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.settings-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.settings-section h3 i {
    color: var(--accent-primary);
    width: 18px;
}

/* =====================================================
   Upload Zone
   ===================================================== */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-tertiary);
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.upload-zone i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.upload-zone p {
    font-weight: 500;
    margin-bottom: 5px;
}

.upload-zone .upload-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.upload-zone.small {
    padding: 20px 15px;
}

.upload-zone.small i {
    font-size: 1.8rem;
}

.upload-zone.small p {
    font-size: 0.9rem;
}

.uploaded-count {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

/* Logo Preview */
.logo-preview-container {
    position: relative;
    margin-top: 10px;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    text-align: center;
}

.logo-preview-container img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.btn-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--danger);
    color: #fff;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    transform: scale(1.1);
}

/* =====================================================
   Form Elements
   ===================================================== */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group input[type="color"] {
    width: 50px;
    height: 35px;
    padding: 2px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    background: var(--bg-tertiary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Range Slider */
input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: var(--bg-tertiary);
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-gradient);
    border-color: var(--accent-primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
}

/* =====================================================
   Text Watermark Entry
   ===================================================== */
.text-entry {
    background: var(--bg-tertiary);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid var(--border-color);
}

.text-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.text-entry-header span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-primary);
}

.text-entry .btn-remove {
    position: static;
    width: 28px;
    height: 28px;
}

.text-entry .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.text-entry .form-group {
    margin-bottom: 12px;
}

.text-entry .form-group.full-width {
    grid-column: 1 / -1;
}

/* Text Effects */
.text-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.effect-btn {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.effect-btn:hover,
.effect-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.btn-text {
    display: inline;
}

@media (max-width: 600px) {
    .btn-text {
        display: none;
    }
}

.action-buttons {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.action-buttons .btn {
    width: 100%;
}

/* =====================================================
   Preview Panel (Right)
   ===================================================== */
.preview-panel {
    background: var(--bg-primary);
    padding: 0;
    overflow-y: auto;
    max-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
}

.preview-panel .panel-header {
    background: var(--bg-primary);
    flex-shrink: 0;
}

/* Live Preview */
.live-preview-container {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.live-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: var(--accent-gradient);
    color: #fff;
}

.live-preview-header span {
    font-weight: 600;
    font-size: 0.9rem;
}

.live-preview-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
    max-height: 500px;
    background: repeating-conic-gradient(#808080 0% 25%, transparent 0% 50%) 50% / 20px 20px;
    overflow: hidden;
}

.live-preview-wrapper canvas {
    max-width: 100%;
    max-height: 450px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.live-preview-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    margin: 0 auto;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

.comparison-before img,
.comparison-after img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.comparison-label {
    position: absolute;
    bottom: 10px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.comparison-before .comparison-label {
    right: 10px;
}

.comparison-after .comparison-label {
    left: 10px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.comparison-handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--accent-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 25px;
    flex: 1;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state.small {
    padding: 40px 20px;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state.small i {
    font-size: 2rem;
}

.empty-state p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.empty-state.small p {
    font-size: 0.9rem;
}

/* Preview Card */
.preview-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-card-image {
    opacity: 0.9;
}

.preview-card-info {
    padding: 12px 15px;
    border-top: 1px solid var(--border-color);
}

.preview-card-name {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.preview-card-size {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.preview-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.preview-card-actions .btn {
    flex: 1;
    padding: 8px;
    font-size: 0.75rem;
}

.preview-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-pending {
    background: var(--warning);
    color: #000;
}

.status-processed {
    background: var(--success);
    color: #fff;
}

.preview-card-remove {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-card-remove {
    opacity: 1;
}

.preview-card-remove:hover {
    background: var(--danger);
}

.preview-card-select {
    position: absolute;
    bottom: 60px;
    right: 10px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-card-select {
    opacity: 1;
}

.preview-card-select:hover {
    transform: scale(1.1);
}

.preview-card.selected {
    border: 2px solid var(--accent-primary);
}

.preview-card.selected .preview-card-select {
    opacity: 1;
    background: var(--success);
}

/* =====================================================
   Progress Bar
   ===================================================== */
.progress-container {
    padding: 20px 25px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: sticky;
    bottom: 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.progress-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* =====================================================
   Modal
   ===================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
}

.modal-content.modal-small {
    width: 100%;
    max-width: 450px;
    max-height: 80vh;
}

.modal-content img {
    max-width: 100%;
    max-height: calc(90vh - 140px);
    border-radius: 10px 10px 0 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: var(--accent-primary);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    opacity: 1;
    background: var(--danger);
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-secondary);
}

/* Preset List */
.preset-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.preset-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.preset-item:hover {
    background: var(--bg-card);
}

.preset-item-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.preset-item-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.preset-item-actions {
    display: flex;
    gap: 8px;
}

.preset-item-actions .btn {
    padding: 6px 10px;
    font-size: 0.75rem;
}

/* =====================================================
   Toast Notifications
   ===================================================== */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.warning {
    border-left: 4px solid var(--warning);
}

.toast.info {
    border-left: 4px solid var(--info);
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

.toast.warning i {
    color: var(--warning);
}

.toast.info i {
    color: var(--info);
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .settings-panel {
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .preview-panel {
        max-height: none;
    }

    .action-buttons {
        position: relative;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 12px 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .settings-section {
        padding: 15px;
    }

    .panel-header {
        padding: 15px;
    }

    .preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .action-buttons {
        padding: 15px;
    }

    .text-entry .form-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .toast {
        min-width: auto;
        max-width: calc(100vw - 40px);
    }

    .live-preview-wrapper {
        min-height: 200px;
        max-height: 250px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Custom Position Draggable */
.custom-position-controls {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

/* Resize Options */
.resize-options {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

/* Timestamp Badge */
.timestamp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Drag indicator */
.drag-indicator {
    position: absolute;
    border: 2px dashed var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    pointer-events: none;
    z-index: 10;
    border-radius: 4px;
}
