/* ===== CSS Design System - Cursor Editor Pro ===== */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0d0f14;
    --bg-secondary: #151820;
    --bg-tertiary: #1c2030;
    --bg-elevated: #222638;
    --bg-hover: #2a2f45;
    --bg-active: #333a55;
    
    --surface-glass: rgba(30, 35, 55, 0.85);
    --surface-border: rgba(100, 120, 200, 0.15);
    --surface-border-hover: rgba(100, 120, 200, 0.3);
    
    --text-primary: #e8ecf4;
    --text-secondary: #8892aa;
    --text-muted: #5a6380;
    
    --accent-primary: #6c5ce7;
    --accent-primary-glow: rgba(108, 92, 231, 0.3);
    --accent-secondary: #00cec9;
    --accent-danger: #ff4757;
    --accent-warning: #ffa502;
    --accent-success: #2ed573;
    
    --hotspot-color: #ff4444;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px var(--accent-primary-glow);
    
    /* Spacing */
    --toolbar-width: 76px;
    --right-panel-width: 280px;
    --header-height: 52px;
    --status-bar-height: 28px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    user-select: none;
    -webkit-user-select: none;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-active); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ===== Header ===== */
#app-header {
    height: var(--header-height);
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
    position: relative;
}

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

.logo-icon {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px var(--accent-primary-glow));
}

.header-brand h1 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-badge {
    font-size: 9px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
    letter-spacing: 1px;
}

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

.canvas-size-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.canvas-size-selector label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.canvas-size-selector select {
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-fast);
}

.canvas-size-selector select:hover {
    border-color: var(--surface-border-hover);
}

.canvas-size-selector select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-primary-glow);
}

.zoom-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tertiary);
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--surface-border);
}

#zoom-level {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-secondary);
    min-width: 36px;
    text-align: center;
}

.zoom-controls button,
.header-buttons button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.zoom-controls button:hover,
.header-buttons button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-buttons .separator {
    width: 1px;
    height: 20px;
    background: var(--surface-border);
    margin: 0 6px;
}

.header-buttons button.active {
    color: var(--accent-secondary);
    background: rgba(0, 206, 201, 0.1);
}

/* ===== Main Layout ===== */
#app-main {
    display: flex;
    height: calc(100vh - var(--header-height));
}

/* ===== Left Toolbar ===== */
#toolbar {
    width: var(--toolbar-width);
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    gap: 4px;
    overflow-y: auto;
    z-index: 50;
}

.tool-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}

.tool-divider {
    width: 48px;
    height: 1px;
    background: var(--surface-border);
    margin: 6px 0;
}

.tool-btn {
    width: 58px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.tool-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--surface-border);
}

.tool-btn.active {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-primary-glow), inset 0 0 12px rgba(108, 92, 231, 0.05);
}

.tool-btn.active .tool-label {
    color: var(--accent-primary);
}

.tool-hotspot.active {
    color: var(--hotspot-color) !important;
    border-color: var(--hotspot-color) !important;
    background: rgba(255, 68, 68, 0.1) !important;
    box-shadow: 0 0 12px rgba(255, 68, 68, 0.2) !important;
}

.tool-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.brush-size-label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

.brush-slider {
    width: 54px;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    outline: none;
}

.brush-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    box-shadow: 0 0 6px var(--accent-primary-glow);
    transition: transform var(--transition-fast);
}

.brush-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#brush-size-display {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== Canvas Area ===== */
#canvas-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(108, 92, 231, 0.03) 0%, transparent 70%),
        var(--bg-primary);
    overflow: hidden;
}

#canvas-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#editor-canvas {
    border: 2px solid var(--surface-border);
    border-radius: 4px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(108, 92, 231, 0.05);
    cursor: crosshair;
}

#hotspot-marker {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.5));
    animation: hotspot-pulse 1.5s ease-in-out infinite;
}

@keyframes hotspot-pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Drop Zone */
#drop-zone {
    position: absolute;
    inset: 0;
    background: rgba(108, 92, 231, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    border: 3px dashed var(--accent-primary);
    border-radius: var(--radius-lg);
    margin: 10px;
    transition: opacity var(--transition-normal);
}

#drop-zone.hidden {
    display: none;
}

.drop-zone-content {
    text-align: center;
    color: var(--accent-primary);
}

.drop-zone-content p {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
}

.drop-zone-content span {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

/* Status Bar */
#status-bar {
    height: var(--status-bar-height);
    background: var(--bg-secondary);
    border-top: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 20px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

#status-bar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

#status-hotspot {
    color: var(--hotspot-color);
}

#status-tool {
    color: var(--accent-secondary);
    margin-left: auto;
}

/* ===== Right Panel ===== */
#right-panel {
    width: var(--right-panel-width);
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 50;
}

.panel-section {
    padding: 14px;
    border-bottom: 1px solid var(--surface-border);
}

.panel-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Color Picker */
.color-pickers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-swatch-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.color-swatch {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--surface-border);
    cursor: pointer;
    position: absolute;
    transition: all var(--transition-fast);
    /* checkerboard background for transparency */
    background-image:
        linear-gradient(45deg, #333 25%, transparent 25%),
        linear-gradient(-45deg, #333 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #333 75%),
        linear-gradient(-45deg, transparent 75%, #333 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

.color-swatch.bg {
    top: 12px;
    left: 12px;
    z-index: 1;
}

.color-swatch.fg {
    top: 2px;
    left: 2px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.color-swatch.fg:hover, .color-swatch.bg:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
}

.color-main input[type="color"] {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.alpha-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

.alpha-control label {
    font-weight: 500;
    white-space: nowrap;
}

.alpha-control input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--accent-primary) 100%);
    border-radius: 2px;
    outline: none;
}

.alpha-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

#alpha-value {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 32px;
    text-align: right;
}

/* Color Palette */
.color-palette {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2px;
    margin-top: 10px;
}

.palette-color {
    aspect-ratio: 1;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.palette-color:hover {
    transform: scale(1.2);
    border-color: white;
    z-index: 1;
    box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

/* Recent Colors */
.recent-colors {
    margin-top: 10px;
}

.recent-colors label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

#recent-colors-list {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.recent-color {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid var(--surface-border);
    transition: all var(--transition-fast);
}

.recent-color:hover {
    transform: scale(1.15);
    border-color: white;
}

/* Preview */
#preview-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#preview-canvas {
    width: 100%;
    aspect-ratio: 1;
    background:
        linear-gradient(45deg, #1a1a2e 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a2e 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1a1a2e 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a2e 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    background-color: #12121e;
    border-radius: var(--radius-sm);
    border: 1px solid var(--surface-border);
}

#cursor-test-area {
    height: 80px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-elevated));
    border-radius: var(--radius-sm);
    border: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-fast);
}

#cursor-test-area:hover {
    border-color: var(--accent-primary);
}

#cursor-test-area p {
    font-size: 11px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Import/Export Buttons */
.io-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.action-btn:hover {
    background: var(--bg-hover);
    border-color: var(--surface-border-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.action-btn.import {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(108, 92, 231, 0.05));
    border-color: rgba(108, 92, 231, 0.3);
}

.action-btn.import:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.25), rgba(108, 92, 231, 0.1));
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-primary-glow);
}

.action-btn.export {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.08), rgba(0, 206, 201, 0.02));
    border-color: rgba(0, 206, 201, 0.2);
}

.action-btn.export:hover {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.18), rgba(0, 206, 201, 0.05));
    border-color: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(0, 206, 201, 0.2);
}

/* Frames */
.frames-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.frames-controls button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.frames-controls button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--surface-border-hover);
}

.frame-speed {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-left: auto;
}

.frame-speed input {
    width: 50px;
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 11px;
    font-family: inherit;
    text-align: center;
    outline: none;
}

.frame-speed input:focus {
    border-color: var(--accent-primary);
}

#frames-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.frame-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--surface-border);
    cursor: pointer;
    background:
        linear-gradient(45deg, #1a1a2e 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a2e 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1a1a2e 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a2e 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    background-color: #12121e;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.frame-thumb canvas {
    width: 100%;
    height: 100%;
}

.frame-thumb:hover {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.frame-thumb.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary-glow);
}

.frame-thumb .frame-number {
    position: absolute;
    bottom: 1px;
    right: 2px;
    font-size: 8px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 3px black, 0 0 3px black;
}

.frame-delay-input {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 7px;
    font-weight: 600;
    background: rgba(0,0,0,0.65);
    color: var(--text-secondary);
    border: none;
    border-top: 1px solid var(--surface-border);
    text-align: center;
    padding: 1px 2px;
    outline: none;
    cursor: text;
}

.frame-delay-input:focus {
    background: rgba(108, 92, 231, 0.4);
    color: white;
}

.frame-thumb {
    height: 62px; /* expandido para acomodar o delay input */
}

/* ===== Import Dialog ===== */
.dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.dialog-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dialog {
    background: var(--bg-secondary);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: dialogIn 0.3s var(--transition-smooth);
}

@keyframes dialogIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.dialog h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.import-preview-container {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-border);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 16px;
}

#import-preview-canvas {
    max-width: 100%;
    max-height: 280px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.import-options {
    margin-bottom: 16px;
}

.import-options label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.import-options select {
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.dialog-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.dialog-btn {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--surface-border);
}

.dialog-btn.cancel {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.dialog-btn.cancel:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.dialog-btn.confirm {
    background: linear-gradient(135deg, var(--accent-primary), #5a4bd4);
    color: white;
    border-color: var(--accent-primary);
}

.dialog-btn.confirm:hover {
    background: linear-gradient(135deg, #7b6ef0, var(--accent-primary));
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-elevated);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: var(--accent-success); }
.toast.error { border-color: var(--accent-danger); }
.toast.info { border-color: var(--accent-primary); }
