body { font-family: 'Inter', sans-serif; }

.chat-bg {
    background-color: #0f172a;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23334155" fill-opacity="0.15" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

.erp-input {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    color: #f1f5f9;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s;
}
.erp-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 1px #3b82f6; }

.msg-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.msg-client { align-self: flex-start; background-color: #1e293b; border-top-left-radius: 2px; border: 1px solid #334155;}
.msg-bot { align-self: flex-start; border: 1px solid rgba(59, 130, 246, 0.4); background-color: rgba(59, 130, 246, 0.1); border-top-left-radius: 2px;}
.msg-shop { align-self: flex-end; background-color: #059669; border-top-right-radius: 2px; color: white;}

/* Kanban Styles */
.kanban-board {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    height: 100%;
}

.kanban-col {
    background-color: #1e293b; /* navy-800 */
    border: 1px solid #334155; /* slate-700 */
    border-radius: 8px;
    min-width: 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
}

.kanban-col-header {
    padding: 12px 16px;
    border-bottom: 2px solid #334155;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-cards-container {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kanban-card {
    background-color: #0f172a; /* navy-900 */
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 12px;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kanban-card:active { cursor: grabbing; opacity: 0.8; }
.kanban-card-placeholder { background-color: rgba(59, 130, 246, 0.1); border: 2px dashed #3b82f6; border-radius: 6px; }

/* Tag Badge */
.tag-badge {
    background: #475569;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}
.tag-Urgente { background-color: #b91c1c; }
.tag-Atacado { background-color: #047857; }
.tag-Varejo { background-color: #1d4ed8; }

.toast-anim { animation: slideUp 0.3s ease forwards; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0;} to { transform: translateY(0); opacity: 1; } }
