body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ANIMAÇÕES */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGIN OVERLAY TRANSITION */
#loginOverlay {
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

#loginOverlay.hidden-auth {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* CHIPS SELECTION */
.chip-btn {
    transition: all 0.2s;
}

.chip-btn.active {
    background-color: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
    font-weight: 600;
}

/* INLINE EDIT */
.editable-field {
    position: relative;
    border-bottom: 1px dashed #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}

.editable-field:hover {
    background-color: #f1f5f9;
    border-bottom-color: #94a3b8;
}

.editable-field input {
    display: none;
}

.editable-field.editing span {
    display: none;
}

.editable-field.editing input {
    display: block;
}

.editable-field.editing::after {
    content: '↵';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #94a3b8;
    pointer-events: none;
}
