        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #f8fafc;
            --accent: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --dark: #1e293b;
            --light: #ffffff;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: var(--dark);
        }

        .app-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        .app-header {
            background: var(--light);
            border-radius: 16px;
            padding: 24px 32px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--gray-200);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
        }

        .logo-text h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .logo-text p {
            color: var(--gray-500);
            font-size: 14px;
        }

        .header-actions {
            display: flex;
            gap: 12px;
        }

        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 24px;
            height: calc(100vh - 160px);
        }

        /* Sidebar */
        .sidebar {
            background: var(--light);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--gray-200);
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--gray-100);
        }

        .sidebar-header h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
        }

        .sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}


        .endpoints-list {
            flex: 1;
            overflow-y: auto;
        }

        .endpoint-group {
            margin-bottom: 24px;
        }

        .group-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            padding-left: 8px;
        }

        .endpoint-item {
            padding: 12px 16px;
            margin: 6px 0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid transparent;
        }    

        .endpoint-item.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }

        .endpoint-item.active .method-badge {
            background: white;
            color: var(--primary);
        }

        .method-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-width: 60px;
            text-align: center;
        }

        .endpoint-info {
            flex: 1;
            min-width: 0;
        }

        .endpoint-name {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .endpoint-path {
            font-size: 12px;
            color: inherit;
            opacity: 0.8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Documentation Area */
        .doc-area {
            background: var(--light);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
            border: 1px solid var(--gray-200);
        }

        /* Endpoint Header */
        .endpoint-header {
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--gray-100);
        }

        .endpoint-title {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .endpoint-title h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
        }

        .endpoint-actions {
            display: flex;
            gap: 8px;
            margin-left: auto;
        }

        .endpoint-description {
            color: var(--gray-600);
            font-size: 16px;
            line-height: 1.6;
            max-width: 800px;
        }

        /* URL Box */
        .url-box {
            background: var(--gray-100);
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
            border: 1px solid var(--gray-200);
            font-family: 'JetBrains Mono', 'Consolas', monospace;
        }

        .url-prefix {
            color: var(--gray-500);
            font-weight: 500;
        }

        .url-path {
            color: var(--primary);
            font-weight: 600;
        }

        /* Sections */
        .section {
            margin: 32px 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gray-100);
        }

        .section-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark);
        }

        /* Cards */
        .card {
            background: var(--light);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.2s ease;
        }

        .card:hover {
            border-color: var(--gray-300);
            box-shadow: var(--shadow);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
        }

        /* Parameters Table */
        .params-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
        }

        .params-table th {
            background: var(--gray-100);
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--gray-600);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--gray-200);
        }

        .params-table td {
            padding: 16px;
            border-bottom: 1px solid var(--gray-200);
            vertical-align: top;
        }

        .params-table tr:last-child td {
            border-bottom: none;
        }

        .params-table tr:hover {
            background: var(--gray-100);
        }

        .param-name {
            font-family: 'JetBrains Mono', 'Consolas', monospace;
            font-weight: 600;
            color: var(--dark);
        }

        .param-type {
            display: inline-block;
            padding: 4px 10px;
            background: var(--gray-200);
            color: var(--gray-700);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .param-required {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .required {
            background: #fee2e2;
            color: #dc2626;
        }

        .optional {
            background: #d1fae5;
            color: #059669;
        }

        /* JSON Viewer */
        .json-viewer {
            background: #1a1b26;
            color: #c0caf5;
            padding: 24px;
            border-radius: 12px;
            font-family: 'JetBrains Mono', 'Consolas', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: auto;
            margin: 16px 0;
            border: 1px solid #24283b;
        }

        .json-key { color: #7aa2f7; }
        .json-string { color: #9ece6a; }
        .json-number { color: #ff9e64; }
        .json-boolean { color: #bb9af7; }
        .json-null { color: #f7768e; }

        /* Response Codes */
        .response-codes {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .response-code {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .code-success {
            background: #d1fae5;
            color: #065f46;
        }

        .code-error {
            background: #fee2e2;
            color: #991b1b;
        }

        .code-info {
            background: #dbeafe;
            color: #1e40af;
        }

        /* Buttons */
        .btn {
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: var(--gray-100);
            color: var(--gray-700);
            border: 1px solid var(--gray-300);
        }

        .btn-secondary:hover {
            background: var(--gray-200);
            transform: translateY(-1px);
        }

        .btn-danger {
            background: var(--danger);
            color: white;
        }

        .btn-danger:hover {
            background: #dc2626;
            transform: translateY(-2px);
        }

        .btn-icon {
            padding: 8px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid var(--gray-300);
        }

        .btn-icon:hover {
            background: var(--gray-100);
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background: var(--light);
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            padding: 24px 32px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
        }

        .modal-body {
            padding: 32px;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray-500);
            cursor: pointer;
            padding: 4px;
            border-radius: 6px;
        }

        .close-btn:hover {
            background: var(--gray-100);
            color: var(--dark);
        }

        /* Form */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 14px;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.2s ease;
            background: var(--light);
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-array {
            background: var(--gray-100);
            border-radius: 10px;
            padding: 20px;
            margin: 16px 0;
        }

        .array-item {
            background: var(--light);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid var(--gray-200);
        }

        .array-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .array-title {
            font-weight: 600;
            color: var(--dark);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: var(--gray-500);
        }

        .empty-state-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        .empty-state h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--gray-600);
        }

        /* Loading */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            color: var(--gray-500);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-layout {
                grid-template-columns: 1fr;
                height: auto;
            }
            
            .sidebar {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .app-header {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
            
            .header-actions {
                width: 100%;
                justify-content: center;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Color coding for methods */
        .method-get { background: #10b981; color: white; }
        .method-post { background: #6366f1; color: white; }
        .method-put { background: #f59e0b; color: white; }
        .method-delete { background: #ef4444; color: white; }
        .method-patch { background: #8b5cf6; color: white; }



        /* ============================
   RESPONSE GENERATOR STYLES
   ============================ */

.response-generator-section {
    border: 2px solid #dcfce7;
    border-radius: 12px;
    overflow: hidden;
}

.response-controls {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.strategy-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.strategy-btn {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.strategy-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.strategy-btn.active {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1d4ed8;
}

.strategy-btn[data-strategy="manual"] {
    border-left: 4px solid #94a3b8;
}

.strategy-btn[data-strategy="fromBody"] {
    border-left: 4px solid #10b981;
}

.strategy-btn[data-strategy="full"] {
    border-left: 4px solid #8b5cf6;
}

.strategy-btn[data-strategy="minimal"] {
    border-left: 4px solid #f59e0b;
}

.form-label .hint {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: normal;
    margin-top: 5px;
}

/* Response Preview */
.response-preview {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.preview-header h4 {
    margin: 0;
    color: #334155;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.response-preview .json-viewer {
    max-height: 300px;
    overflow-y: auto;
    margin: 0;
    border-radius: 0;
    border: none;
}

/* JSON Syntax Highlight para Preview */
.json-key { color: #2563eb; font-weight: 600; }
.json-string { color: #059669; }
.json-number { color: #ea580c; }
.json-boolean { color: #dc2626; }
.json-null { color: #6b7280; }

/* Auto-generate notification */
.auto-gen-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading indicator for auto-generation */
.generating-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-size: 14px;
    margin-left: 10px;
}

.generating-indicator::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #3b82f6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
  


/* ============================
   API TESTER MODAL STYLES
   ============================ */

#testModal .modal-content {
    max-width: 900px !important;
}

#testModal .section {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

#testModal h3 {
    color: #4f46e5;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#testModal .btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#testModal .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

#testModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

#testModal .btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

#testModal .btn-secondary:hover {
    background: #e2e8f0;
}

/* Form inputs in test modal */
#testModal input[type="text"],
#testModal select,
#testModal textarea {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.2s ease;
}

#testModal input[type="text"]:focus,
#testModal select:focus,
#testModal textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Response area enhancements */
#responseOutput::-webkit-scrollbar {
    width: 8px;
}

#responseOutput::-webkit-scrollbar-track {
    background: #0f172a;
}

#testModal #responseOutput::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Layout de 4 colunas para Body Fields */
.four-columns {
    grid-template-columns: 2fr 1fr 1fr 2fr !important;
}

/* Linha de descrição */
.description-row {
    margin-top: 10px !important;
}

.description-row .form-input {
    width: 100% !important;
}

/* Responsividade */
@media (max-width: 1024px) {
    .four-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
}

@media (max-width: 768px) {
    .four-columns {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

/* Estilo específico para array items de body */
#bodyParamsContainer .array-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
}

#bodyParamsContainer .array-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

#bodyParamsContainer .array-title {
    font-weight: 600;
    color: #4f46e5;
    font-size: 14px;
}

/* Layout de 3 colunas para Headers */
.three-columns {
    grid-template-columns: 1fr 2fr 1fr !important;
}

/* Estilos comuns para todos os array items */
#headersContainer .array-item,
#queryParamsContainer .array-item,
#bodyParamsContainer .array-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

#headersContainer .array-item:hover,
#queryParamsContainer .array-item:hover,
#bodyParamsContainer .array-item:hover {
    border-color: #c7d2fe;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

/* Labels para os campos (opcional) */
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
}

/* Para adicionar labels aos campos */
.form-group.with-label {
    display: flex;
    flex-direction: column;
}

/* Ajuste dos inputs dentro do grid */
.form-grid .form-input,
.form-grid .form-select {
    width: 100% !important;
    min-width: 0; /* Importante para grid */
}

/* Footer da seção para botões */
.section-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.section-footer .btn {
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Botão de adicionar múltiplos */
.btn-icon[onclick*="addMultiple"] {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.btn-icon[onclick*="addMultiple"]:hover {
    background: #e0f2fe;
}

/* Estilo para quando há muitos campos */
#bodyParamsContainer:not(:empty) {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 10px;
}

/* Scrollbar personalizada */
#bodyParamsContainer::-webkit-scrollbar {
    width: 6px;
}

#bodyParamsContainer::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

#bodyParamsContainer::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

#bodyParamsContainer::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Estilo para números dos campos */
.field-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Contador no footer */
.field-counter {
    display: inline-block;
    margin-left: 15px;
    padding: 6px 12px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Diferenciação visual por número ímpar/par */
.array-item:nth-child(odd) {
    background: #f8fafc;
}

.array-item:nth-child(even) {
    background: #ffffff;
}

/* Highlight para o campo atual */
.array-item.current-editing {
    border-left: 4px solid #4f46e5;
    background: #f0f9ff;
}

/* Labels com número */
.form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label::before {
    content: '#';
    color: #94a3b8;
    font-size: 11px;
    font-weight: bold;
}