* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #333333;
    height: 100vh;
    overflow: hidden;
}

/* ============ SCREEN MANAGEMENT ============ */
.screen {
    display: none;
    height: 100vh;
    flex-direction: column;
}

.screen.active {
    display: flex;
}

/* ============ COMMON COMPONENTS ============ */
.btn {
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #f5f5f5;
    color: #333333;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background: #e0e0e0;
}

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

.btn-primary {
    background: #3ca22d;
    border-color: #3ca22d;
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: #2f8a22;
}

.btn-small {
    padding: 5px 12px;
    font-size: 0.8rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: rgba(60, 162, 45, 0.08);
    color: #3ca22d;
    font-weight: 500;
    padding: 6px 10px;
}

.btn-back:hover {
    color: #2f8a22;
    background: rgba(60, 162, 45, 0.16);
}

.btn-nav {
    padding: 8px 16px;
    min-width: 110px;
    background: #e8f4fd;
    border-color: #0ea5e9;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.btn-nav:hover:not(:disabled) {
    background: #0ea5e9;
    color: white;
}

.btn-validate {
    padding: 10px 48px;
    background: #3ca22d;
    border: 2px solid #3ca22d;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-validate:hover:not(:disabled) {
    background: #2d8a1f;
    border-color: #2d8a1f;
    color: white;
}

.btn-submit {
    padding: 10px 48px;
    background: #3ca22d;
    border: 2px solid #3ca22d;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover:not(:disabled) {
    background: #2f8a22;
    border-color: #2f8a22;
}

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

.btn-reset {
    padding: 10px 48px;
    background: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 6px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reset:hover {
    background: #e94560;
    border-color: #e94560;
    color: white;
}

.btn-toggle {
    padding: 5px 12px;
    font-size: 0.75rem;
    opacity: 0.5;
    border-color: #444;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.btn-toggle.active {
    opacity: 1;
    border-color: #0ea5e9;
    color: #0ea5e9;
}

/* ============ TOOLBAR ============ */
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.toolbar h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3ca22d;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-display {
    font-size: 0.85rem;
    color: #888;
}

.annotation-title {
    font-size: 0.9rem;
    color: #888;
}

.pole-counter {
    font-size: 0.85rem;
    color: #888;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
    text-align: center;
}

/* ============ SCREEN 0: LOGIN ============ */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 24px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3ca22d;
    margin-bottom: 48px;
}

.login-form {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input[type="url"],
.form-field input[type="text"],
.form-field input[type="password"],
.form-field input[autocomplete="username"] {
    padding: 10px 14px;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    color: #333333;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-field input:focus {
    outline: none;
    border-color: #3ca22d;
}

.checkbox-field {
    flex-direction: row;
    align-items: center;
}

.checkbox-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    font-size: 0.85rem;
    cursor: pointer;
}

.login-error {
    color: #e94560;
    font-size: 0.85rem;
    min-height: 20px;
}

/* ============ SCREEN 1: PROJECTS ============ */
.page-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.page-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333333;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    background: #f8f8f8;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.project-card:hover {
    border-color: #3ca22d;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(60, 162, 45, 0.1);
}

.project-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
}

.project-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

.project-card .project-type {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.btn-settings-gear {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    line-height: 1;
}

.btn-settings-gear:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.06);
}

/* ============ SCREEN 2: TICKET LIST ============ */
.tickets-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.stat-item:hover {
    background: #e2f0de;
    border-color: #a0d096;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(60, 162, 45, 0.15);
}

.stat-item.active {
    border-color: #3ca22d;
    background: #eef7ed;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3ca22d;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-tabs {
    display: flex;
    margin-left: auto;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
}

.tab-btn {
    padding: 8px 24px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    background: #ffffff;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-btn + .tab-btn {
    border-left: 1px solid #d0d0d0;
}

.tab-btn:hover {
    color: #333;
    background: #f0f0f0;
}

.tab-btn.active {
    background: #3ca22d;
    color: #ffffff;
}

.tickets-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 12px;
}

.ticket-card {
    background: #f8f8f8;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.ticket-card:hover {
    border-color: #3ca22d;
    transform: translateY(-1px);
}

.ticket-card.completed {
    opacity: 0.6;
    border-color: #10b981;
}

.ticket-thumbnail {
    width: 100%;
    height: 100px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ticket-thumbnail::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #d0d0d0;
    border-top-color: #3ca22d;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
}

.ticket-thumbnail:has(img.loaded)::after,
.ticket-thumbnail:has(.placeholder)::after {
    display: none;
}

.ticket-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.ticket-thumbnail img.loaded {
    opacity: 1;
}

.ticket-thumbnail .placeholder {
    color: #aaa;
    font-size: 1.2rem;
}

.ticket-info {
    padding: 6px 8px;
}

.ticket-info h4 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.ticket-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-date {
    font-size: 0.65rem;
    color: #888;
}

.ticket-status {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-status.assigned {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
}

.ticket-status.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.ticket-status.in-progress {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.page-info {
    font-size: 0.85rem;
    color: #888;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
    text-align: center;
}

/* ============ SCREEN 3: ANNOTATION ============ */
.workspace {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.connectors-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.image-panel {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f0f0f0;
    position: relative;
}

#canvas {
    border-radius: 4px;
    cursor: default;
}

/* Side Panel */
.side-panel {
    flex: 1;
    padding: 20px;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.side-panel-header h2 {
    margin-right: auto;
}

.side-panel-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    margin-top: 16px;
    flex-shrink: 0;
}


.side-panel-section h2 {
    margin-bottom: 12px;
}

.side-panel h2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flags bar */
.flags-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.flag-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    flex: 1;
}

.flag-chip:hover {
    border-color: #f59e0b;
}

.flag-chip--danger:hover {
    border-color: #e94560;
}

.flag-chip input[type="checkbox"] {
    display: none;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s;
}

.flag-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
}

.flag-hint {
    font-size: 0.68rem;
    color: #888;
    display: none;
}

/* Checked state */
.flag-chip:has(input:checked) {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
}

.flag-chip:has(input:checked) .flag-icon {
    background: #f59e0b;
    color: #ffffff;
}

.flag-chip:has(input:checked) .flag-hint {
    display: block;
}

.flag-chip--danger:has(input:checked) {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.08);
}

.flag-chip--danger:has(input:checked) .flag-icon {
    background: #e94560;
    color: white;
}

.attachments-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    position: relative;
}

/* Attachment Item */
.attachment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
}

.attachment-item:hover {
    background: rgba(60, 162, 45, 0.08);
}

.attachment-id {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    min-width: 28px;
}

.attachment-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.attachment-color:hover {
    transform: scale(1.4);
    box-shadow: 0 0 6px currentColor;
}

.attachment-height {
    font-size: 0.7rem;
    color: #0ea5e9;
    font-variant-numeric: tabular-nums;
    min-width: 50px;
}

.btn-height-adjust {
    background: #f5f5f5;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    color: #333333;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: all 0.15s;
    flex-shrink: 0;
}

.btn-height-adjust:hover {
    color: #0ea5e9;
    border-color: #0ea5e9;
}

.btn-height-adjust.active {
    color: #3ca22d;
    border-color: #3ca22d;
    background: rgba(60, 162, 45, 0.15);
}

/* Reason button */
.btn-reason {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e94560;
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}

.btn-reason:hover {
    background: rgba(233, 69, 96, 0.25);
}

.btn-reason.has-reason {
    border-color: #3ca22d;
    background: rgba(60, 162, 45, 0.15);
    color: #3ca22d;
}

.btn-reason.has-reason:hover {
    background: rgba(60, 162, 45, 0.3);
}

.attachment-name {
    padding: 6px 12px;
    padding-right: 30px;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    color: #333333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.attachment-name:hover {
    border-color: #3ca22d;
}

.attachment-name.modified {
    border-color: #3ca22d;
    background-color: rgba(60, 162, 45, 0.1);
}

.attachment-name.unkn {
    border-color: #c0392b;
    background-color: rgba(192, 57, 43, 0.1);
}

/* Dropdown */
.dropdown-wrapper {
    position: relative;
    width: 400px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #3ca22d;
    border-radius: 6px;
    margin-top: 4px;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.1s;
}

.dropdown-option:hover {
    background: rgba(60, 162, 45, 0.15);
}

.dropdown-option.selected {
    background: rgba(60, 162, 45, 0.2);
    font-weight: 600;
}

/* Reason popover */
.reason-popover {
    position: fixed;
    z-index: 200;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    padding: 16px;
    width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.reason-popover[hidden] {
    display: none;
}

.reason-popover-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.reason-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.reason-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    padding: 4px 0;
}

.reason-option input[type="radio"] {
    accent-color: #3ca22d;
    cursor: pointer;
}

.reason-option--other {
    flex-wrap: wrap;
}

.reason-other-input {
    width: 100%;
    margin-top: 4px;
    padding: 6px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #333;
    background: #f5f5f5;
}

.reason-other-input:focus {
    outline: none;
    border-color: #3ca22d;
}

.btn-reason-confirm {
    width: 100%;
    padding: 8px;
    background: #3ca22d;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-reason-confirm:hover {
    background: #2f8a22;
}

/* Missing reasons list */
.missing-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.missing-reasons-list li {
    padding: 6px 10px;
    margin-bottom: 4px;
    background: rgba(233, 69, 96, 0.08);
    border-left: 3px solid #e94560;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
}

/* Status Bar */
.status-bar {
    padding: 8px 24px;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    font-size: 0.8rem;
    color: #888;
    flex-shrink: 0;
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 40px;
    min-width: 440px;
    max-width: 520px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.modal-message {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-btn--danger {
    background: #e94560;
    border-color: #e94560;
    color: white;
}

.modal-btn--danger:hover {
    background: #d63851;
}

.modal-btn--primary {
    background: #3ca22d;
    border-color: #3ca22d;
    color: white;
}

.modal-btn--primary:hover {
    background: #349826;
}

/* ============ SETTINGS MODAL ============ */

.modal-box--settings {
    min-width: 480px;
    max-width: 560px;
}

.modal-settings-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.settings-section {
    margin-bottom: 20px;
}

.settings-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    min-height: 32px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    padding: 4px 8px 4px 12px;
    font-size: 0.8rem;
    color: #333;
    transition: background 0.15s;
}

.chip:hover {
    background: #e4e4e4;
}

.chip-label {
    user-select: none;
}

.chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: #999;
    padding: 0 2px;
    border-radius: 50%;
    transition: color 0.15s, background 0.15s;
}

.chip-remove:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.chip-add-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.chip-add-input {
    flex: 1;
    padding: 6px 10px;
    font-size: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
}

.chip-add-input:focus {
    border-color: #3ca22d;
}

.btn-chip-add {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.settings-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
}

/* ============ LOADING ============ */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: #999;
    font-size: 1rem;
    gap: 24px;
    grid-column: 1 / -1;
}

.loading::after {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, #3ca22d 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
