/* ============================================
   MINIMALIST COLOR PALETTE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    color: #212529;
    height: 100vh;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

.api-header {
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.api-header-logo {
    height: 24px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.api-header-title {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
}

.api-header-title::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #1B84FF;
    margin-right: 10px;
    vertical-align: middle;
}

.api-header-endpoint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    font-size: 13px;
    max-width: 90%;
    transition: all 0.3s ease;
}

.api-header-endpoint:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: #1B84FF;
}

.api-header-endpoint-label {
    font-weight: 700;
    color: #212529;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.api-header-endpoint-value {
    color: #1B84FF;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 600;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #e9ecef;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.api-header-endpoint-value:hover {
    border-color: #1B84FF;
    background: #f8fbff;
}

.api-header-endpoint-copy {
    background: linear-gradient(135deg, #1B84FF 0%, #1570cd 100%);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 36px;
    height: 36px;
    box-shadow: 0 2px 4px rgba(27, 132, 255, 0.2);
}

.api-header-endpoint-copy:hover {
    background: linear-gradient(135deg, #1570cd 0%, #0d5aa7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(27, 132, 255, 0.3);
}

.api-header-endpoint-copy:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(27, 132, 255, 0.2);
}

.api-header-endpoint-copy i {
    font-size: 14px;
}

.api-header-endpoint-copy:disabled {
    background: #28a745;
    cursor: not-allowed;
    transform: none;
}

.api-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.api-doc-container {
    display: flex;
    flex: 1;
    min-height: 0;
    gap: 12px;
    padding: 8px;
    overflow: hidden;
}

.methods-panel {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.methods-panel-header {
    padding: 8px 12px;
    border-bottom: 1px solid #dee2e6;
    background: #ffffff;
    font-weight: 600;
    font-size: 12px;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.methods-panel-title {
    flex-shrink: 0;
}

.methods-panel-header #filterCategorySelect {
    width: 130px;
    min-width: 120px;
    height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    flex-shrink: 0;
}

.methods-panel-header #filterMethodSearch {
    flex: 1;
    height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    min-width: 150px;
}

.methods-panel-header #addMethodBtn {
    height: 28px;
    padding: 4px 12px;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.methods-panel-content {
    flex: 1;
    overflow: auto;
    padding: 8px;
    background: #ffffff;
}

.api-config-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.api-config-section {
    padding: 10px 16px;
    border-bottom: 1px solid #dee2e6;
    background: #ffffff;
}

.api-tabs-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
}

.api-tabs-content {
    flex: 1;
    overflow: auto;
    padding: 12px;
    background: #ffffff;
}
.config-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.config-row:not(:last-child) {
    margin-bottom: 8px;
}

.config-field {
    flex: 1;
    min-width: 0;
}

.config-format {
    flex: 0 0 140px;
}

.form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #212529;
    height: 16px;
    line-height: 16px;
}

.config-row .form-group > label {
    margin-bottom: 4px;
    flex-shrink: 0;
}

.config-row .form-control {
    margin-top: 0;
    flex-shrink: 0;
}

.config-format .form-group > div {
    margin-top: 0;
    padding-top: 0;
    height: 32px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.config-row .checkbox {
    margin-top: 0;
    padding-top: 0;
    height: 32px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.config-row .checkbox label {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    height: auto;
}

.form-control {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #212529;
    font-family: inherit;
    height: 32px;
    box-sizing: border-box;
}

.form-control:hover {
    border-color: #1B84FF;
}

.form-control:focus {
    outline: none;
    border-color: #1B84FF;
    box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

input[type="password"].form-control {
    letter-spacing: 1px;
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}
input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #1B84FF;
    margin-right: 8px;
}

.config-format label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.config-format label:hover {
    background: rgba(27, 132, 255, 0.05);
}

.checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #212529;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #1B84FF;
    margin-right: 8px;
}

.nav-tabs-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    background: #ffffff;
}

.nav-tabs {
    border-bottom: none;
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex: 1;
}

.nav-tabs > li {
    list-style: none;
    margin: 0;
}

.nav-tabs > li > a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #6c757d;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
}

.nav-tabs > li > a:hover {
    color: #1B84FF;
    background: rgba(27, 132, 255, 0.05);
}

.nav-tabs > li.active > a {
    color: white;
    background: #1B84FF;
    border-bottom-color: #1B84FF;
}

.nav-tabs-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
}

.nav-tabs-actions .btn {
    margin: 0;
}

.tab-content {
    height: 100%;
}

.tab-pane {
    display: none;
    height: 100%;
}

.tab-pane.active {
    display: block;
}
#xmlRequest, #xmlResponse {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    min-height: 100%;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid #dee2e6;
    color: #212529;
    line-height: 1.6;
}

#xmlRequest:focus {
    outline: none;
    border-color: #1B84FF;
    box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.1);
}

/* Syntax highlighting for XML */
#xmlRequest .xml-tag,
#xmlResponse .xml-tag {
    color: #0066cc;
    font-weight: 500;
}

#xmlRequest .xml-attr-name,
#xmlResponse .xml-attr-name {
    color: #7c3aed;
}

#xmlRequest .xml-attr-value,
#xmlResponse .xml-attr-value {
    color: #059669;
}

#xmlRequest .xml-text,
#xmlResponse .xml-text {
    color: #dc2626;
}

/* Syntax highlighting for JSON */
#xmlRequest .json-key,
#xmlResponse .json-key {
    color: #0066cc;
    font-weight: 500;
}

#xmlRequest .json-string,
#xmlResponse .json-string {
    color: #059669;
}

#xmlRequest .json-number,
#xmlResponse .json-number {
    color: #dc2626;
}

#xmlRequest .json-boolean,
#xmlResponse .json-boolean {
    color: #7c3aed;
}

#xmlRequest .json-null,
#xmlResponse .json-null {
    color: #6b7280;
}

.code-language-selector {
    margin-bottom: 15px;
}

.code-language-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.code-language-selector-wrapper label {
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.code-language-selector-wrapper .form-control,
.code-language-selector-wrapper .select2-container {
    flex: 1;
    min-width: 0;
}

.code-language-selector-wrapper .select2-container {
    width: 100% !important;
}

.code-language-selector-wrapper #copyCodeBtn {
    flex-shrink: 0;
    white-space: nowrap;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#codeOutput {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    min-height: 100%;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid #dee2e6;
    color: #212529;
    line-height: 1.6;
    tab-size: 4;
    -moz-tab-size: 4;
}

/* Syntax highlighting for code output */
#codeOutput .code-keyword {
    color: #0066cc;
    font-weight: 500;
}

#codeOutput .code-string {
    color: #059669;
}

#codeOutput .code-number {
    color: #dc2626;
}

#codeOutput .code-comment {
    color: #6b7280;
    font-style: italic;
}

#codeOutput .code-variable {
    color: #7c3aed;
}

#codeOutput .code-escape {
    color: #dc2626;
    font-weight: 500;
}

#methodDetailContent {
    min-height: 100%;
}

.btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #212529;
}

.btn:hover {
    background: #f8f9fa;
}

.btn-primary {
    background: #1B84FF;
    color: white;
    border-color: #1B84FF;
}

.btn-primary:hover {
    background: #0d6efd;
    border-color: #0d6efd;
}

.btn-default {
    background: #ffffff;
    color: #212529;
    border-color: #dee2e6;
}

.btn-default:hover {
    background: #f8f9fa;
    border-color: #1B84FF;
    color: #1B84FF;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 11px;
}
.text-muted {
    color: #adb5bd;
}

.color_app {
    color: #dc3545;
    font-weight: 500;
}

.has-error .form-control {
    border-color: #dc3545;
}

.has-error .form-control:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.control-label {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

#metodosTree {
    background: transparent;
    padding: 0;
}
#metodosTree .jstree-container-ul {
    background: transparent;
    padding-left: 0 !important;
}

#metodosTree > .jstree-container-ul > .jstree-children {
    padding-left: 0 !important;
}

#metodosTree .jstree-children {
    padding-left: 20px !important;
    position: relative;
}

#metodosTree .jstree-children::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(27, 132, 255, 0.25) 0%, 
        rgba(27, 132, 255, 0.2) 50%, 
        rgba(27, 132, 255, 0.15) 100%);
    border-radius: 1px;
    box-shadow: 0 0 2px rgba(27, 132, 255, 0.1);
}

#metodosTree .jstree-node {
    margin: 2px 0;
    min-height: 28px;
    position: relative;
}

#metodosTree .jstree-node::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 14px;
    width: 12px;
    height: 2px;
    background: linear-gradient(to right, 
        rgba(27, 132, 255, 0.4) 0%, 
        rgba(27, 132, 255, 0.25) 100%);
    border-radius: 0 0 0 1px;
    display: block !important;
    box-shadow: 0 1px 2px rgba(27, 132, 255, 0.15);
}

#metodosTree .jstree-node:last-child::after {
    content: '';
    position: absolute;
    left: -11px;
    top: 14px;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    display: block !important;
    z-index: 1;
}

#metodosTree .jstree-ocl {
    width: 20px !important;
    height: 20px !important;
    margin-right: 6px;
    margin-top: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #7ec8ff !important;
    position: relative;
    z-index: 1;
}

/* Ícone de seta para nós fechados */
#metodosTree .jstree-closed > .jstree-ocl:before {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 14px;
    display: inline-block;
    line-height: 20px;
}

/* Ícone de seta para nós abertos */
#metodosTree .jstree-open > .jstree-ocl:before {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 14px;
    display: inline-block;
    line-height: 20px;
}

#metodosTree .jstree-ocl:hover {
    color: #1B84FF !important;
}

#metodosTree .jstree-anchor {
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    color: #212529;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

#metodosTree .jstree-anchor:hover {
    background: rgba(27, 132, 255, 0.05);
    color: #1B84FF;
}

#metodosTree .jstree-clicked {
    background: rgba(27, 132, 255, 0.1);
    color: #1B84FF;
    font-weight: 500;
}

#metodosTree .jstree-icon {
    color: #6c757d;
    margin-right: 8px;
    font-size: 14px;
}

#metodosTree .jstree-node[data-node-type="method"] > .jstree-anchor {
    font-weight: 500;
    color: #212529;
    font-size: 14px;
}

#metodosTree .jstree-node[data-node-type="parameter"] > .jstree-anchor {
    color: #6c757d;
    font-size: 13px;
}

/* Completely disable all default jsTree lines and connectors */
/* Target all possible jsTree line classes */
#metodosTree.jstree-default .jstree-node,
#metodosTree.jstree-default .jstree-icon,
#metodosTree .jstree-default .jstree-node,
#metodosTree .jstree-default .jstree-icon,
#metodosTree.jstree-default .jstree-node.jstree-last,
#metodosTree .jstree-default .jstree-last,
#metodosTree .jstree-node.jstree-last,
#metodosTree .jstree-node,
#metodosTree .jstree-children,
#metodosTree .jstree-container-ul {
    background-image: none !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    background: transparent !important;
    background-size: auto !important;
}

#metodosTree .jstree-checkbox {
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 3px !important;
    margin-right: 8px !important;
    background: #ffffff !important;
    cursor: pointer !important;
}

#metodosTree .jstree-checked > .jstree-checkbox {
    background: #1B84FF !important;
    border-color: #1B84FF !important;
}

#metodosTree .jstree-checked > .jstree-checkbox:after {
    content: "\f00c" !important;
    font-family: 'FontAwesome' !important;
    color: white !important;
    font-size: 11px !important;
    display: block !important;
    text-align: center !important;
    line-height: 16px !important;
}
#metodosTree .tree-node-actions {
    margin-left: 8px;
    display: inline-flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#metodosTree .jstree-anchor:hover .tree-node-actions,
#metodosTree .jstree-clicked .tree-node-actions {
    opacity: 1;
}

#metodosTree .tree-node-actions .btn {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
}

#metodosTree .tree-node-actions .btn.text-danger {
    color: #dc3545;
    border-color: #dc3545;
}

#metodosTree .tree-node-actions .btn.text-danger:hover {
    background: #dc3545;
    color: white;
}

/* Minimalist scrollbar */
.methods-panel-content::-webkit-scrollbar,
.api-tabs-content::-webkit-scrollbar,
.response-field-list::-webkit-scrollbar {
    width: 8px;
}

.methods-panel-content::-webkit-scrollbar-track,
.api-tabs-content::-webkit-scrollbar-track,
.response-field-list::-webkit-scrollbar-track {
    background: transparent;
}

.methods-panel-content::-webkit-scrollbar-thumb,
.api-tabs-content::-webkit-scrollbar-thumb,
.response-field-list::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.methods-panel-content::-webkit-scrollbar-thumb:hover,
.api-tabs-content::-webkit-scrollbar-thumb:hover,
.response-field-list::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}
.response-field-list {
    max-height: 320px;
    overflow-y: auto;
}

.method-detail-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 3px solid #1B84FF;
    border-radius: 6px;
}

.method-detail-section h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #212529;
    font-size: 16px;
    font-weight: 600;
}

.field-detail-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.field-detail-card:hover {
    border-color: #1B84FF;
}

.field-detail-card:last-child {
    margin-bottom: 0;
}

.field-name {
    font-weight: 500;
    color: #212529;
    font-size: 14px;
    margin-bottom: 8px;
}

.field-path {
    font-size: 11px;
    color: #adb5bd;
    font-family: monospace;
    margin-bottom: 8px;
    background: #f8f9fa;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
}

.field-info {
    font-size: 13px;
    color: #212529;
    line-height: 1.6;
}

.field-info-item {
    margin-bottom: 6px;
}

.field-info-label {
    font-weight: 500;
    color: #212529;
    display: inline-block;
    min-width: 100px;
}

.field-info-value {
    color: #6c757d;
}

.field-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 6px;
}

.badge-required {
    background: #dc3545;
    color: white;
}

.badge-optional {
    background: #adb5bd;
    color: white;
}

.badge-default {
    background: #1B84FF;
    color: white;
}

.badge-repeatable {
    background: #6c757d;
    color: white;
}

.badge-type {
    background: #20c997;
    color: white;
}


.modal-header {
    background: #ffffff;
    color: #212529;
    border-bottom: 1px solid #dee2e6;
    padding: 16px 20px;
}

.modal-title {
    font-weight: 600;
    font-size: 16px;
}

.modal-content {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 16px 20px;
}

.modal-body {
    padding: 20px;
}

.modal-header .close {
    color: #6c757d;
    opacity: 0.7;
    font-size: 24px;
    transition: opacity 0.2s ease;
}

.modal-header .close:hover {
    opacity: 1;
}

.help-block {
    color: #adb5bd;
    font-size: 12px;
    margin-top: 4px;
}

.response-field-list {
    padding: 8px;
}

.response-fields-table {
    width: 100%;
    border-collapse: collapse;
}

.response-fields-table th {
    background: #f8f9fa;
    color: #212529;
    padding: 10px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.response-fields-table td {
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.response-fields-table tr:hover {
    background: rgba(27, 132, 255, 0.05);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B84FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}
