/* Modal Styles */
.formulario_web.formulario_web_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease-out;
}

.formulario_web .formulario_web_modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 1200px; /* Aumentado para suportar layout lado a lado */
    width: 95%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    transform: none;
    animation: slideIn 0.3s ease-out;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

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

.formulario_web .modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.formulario_web .modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.formulario_web .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.formulario_web .close-btn:hover {
    color: #333;
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.formulario_web .close-btn:active {
    transform: scale(0.95);
}

.formulario_web .modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.formulario_web .modal-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Layout para preview lado a lado */
.formulario_web .markdown-editor-container {
    display: flex;
    gap: 20px;
    height: 500px;
}

/* Barra de ferramentas do editor */
.formulario_web .markdown-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px;
    background-color: #f8f9fa;
    border: 1px solid #d0d0d0;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    flex-wrap: wrap;
    align-items: center;
}

.formulario_web .toolbar-group {
    display: flex;
    gap: 2px;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid #ddd;
}

.formulario_web .toolbar-group:last-child {
    border-right: none;
    margin-right: 0;
}

.formulario_web .toolbar-btn {
    background: none;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 32px;
    justify-content: center;
}

.formulario_web .toolbar-btn:hover {
    background-color: #e9ecef;
    color: #333;
}

.formulario_web .toolbar-btn:active {
    background-color: #dee2e6;
    transform: scale(0.95);
}

.formulario_web .toolbar-btn.active {
    background-color: #e3f2fd;
    color: #1976d2;
}

/* Botões de controle de fonte */
.formulario_web .toolbar-btn .ph-minus,
.formulario_web .toolbar-btn .ph-plus {
    font-size: 0.7rem;
    margin-right: 2px;
}

.formulario_web .toolbar-btn[title*="Fonte"] {
    font-weight: 600;
    min-width: 40px;
}

.formulario_web .toolbar-separator {
    width: 1px;
    height: 20px;
    background-color: #ddd;
    margin: 0 4px;
}

/* Dropdown para inserção de elementos */
.formulario_web .toolbar-dropdown {
    position: relative;
}

.formulario_web .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 180px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.formulario_web .dropdown-menu.show {
    display: block;
}

.formulario_web .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.formulario_web .dropdown-item:hover {
    background-color: #f8f9fa;
}

.formulario_web .dropdown-item:last-child {
    border-bottom: none;
}

/* Modal para inserção de tabela */
.formulario_web .table-builder {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.formulario_web .table-builder.show {
    display: block;
}

.formulario_web .table-grid {
    display: grid;
    grid-template-columns: repeat(8, 20px);
    gap: 2px;
    margin: 10px 0;
}

.formulario_web .table-cell {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #f8f9fa;
}

.formulario_web .table-cell:hover,
.formulario_web .table-cell.selected {
    background: #e3f2fd;
    border-color: #1976d2;
}

.formulario_web .table-info {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

/* Modal para inserção de link */
.formulario_web .link-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.formulario_web .link-modal-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    max-width: 90%;
}

.formulario_web .link-modal h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.formulario_web .link-form-group {
    margin-bottom: 15px;
}

.formulario_web .link-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.formulario_web .link-form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.formulario_web .link-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Busca e substituição */
.formulario_web .search-replace {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    display: none;
}

.formulario_web .search-replace.show {
    display: block;
}

.formulario_web .search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.formulario_web .search-input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.formulario_web .search-btn {
    padding: 6px 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.formulario_web .search-btn:hover {
    background: #0056b3;
}

.formulario_web .markdown-editor-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.formulario_web .markdown-editor-section.expanded {
    flex: 2; /* Quando expandido, ocupa mais espaço */
}

.formulario_web .markdown-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.formulario_web .markdown-editor-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.formulario_web .markdown-editor-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.formulario_web .control-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #666;
    transition: all 0.2s ease;
}

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

.formulario_web .control-btn.active {
    background-color: #e3f2fd;
    color: #1976d2;
}

.formulario_web .markdown-textarea {
    flex: 1;
    resize: none;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
    transition: border-color 0.2s ease;
    font-weight: 500;
}

.formulario_web .markdown-textarea:focus {
    outline: none;
    border-color: #1976d2;
    background-color: white;
}

.formulario_web .markdown-textarea::placeholder {
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.formulario_web .preview-content {
    flex: 1;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 15px;
    background-color: white;
    overflow-y: auto;
    position: relative;
    line-height: 1.6;
}

.formulario_web .preview-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.formulario_web .preview-loading-text {
    color: #666;
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
}

.formulario_web .preview-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

/* Estatísticas do markdown */
.formulario_web .markdown-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.formulario_web .stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.formulario_web .stat-number {
    font-weight: 600;
    color: #333;
}

/* Modos de visualização */
.formulario_web .layout-vertical .markdown-editor-container {
    flex-direction: column;
    height: 600px;
}

.formulario_web .layout-vertical .markdown-editor-section {
    flex: 1;
}

/* Estilos aprimorados para o conteúdo do preview */
.formulario_web .preview-content h1,
.formulario_web .preview-content h2,
.formulario_web .preview-content h3,
.formulario_web .preview-content h4,
.formulario_web .preview-content h5,
.formulario_web .preview-content h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.formulario_web .preview-content h1 {
    font-size: 1.8rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.formulario_web .preview-content h2 {
    font-size: 1.5rem;
    color: #34495e;
}

.formulario_web .preview-content h3 {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.formulario_web .preview-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
}

.formulario_web .preview-content ul,
.formulario_web .preview-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.formulario_web .preview-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.formulario_web .preview-content strong {
    font-weight: 600;
    color: #2c3e50;
}

.formulario_web .preview-content em {
    font-style: italic;
    color: #7f8c8d;
}

.formulario_web .preview-content code {
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
    color: #e74c3c;
}

.formulario_web .preview-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 12px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.formulario_web .preview-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.formulario_web .preview-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 15px;
    margin: 15px 0;
    color: #666;
    font-style: italic;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
}

.formulario_web .preview-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.formulario_web .preview-content th,
.formulario_web .preview-content td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}

.formulario_web .preview-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.formulario_web .preview-content a {
    color: #3498db;
    text-decoration: none;
}

.formulario_web .preview-content a:hover {
    text-decoration: underline;
}

.formulario_web .termos-content {
    line-height: 1.6;
    color: #333;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .formulario_web .modal-overlay {
        padding: 10px;
    }
    
    .formulario_web .modal-content {
        width: 95%;
        max-height: 90vh;
        max-width: none;
    }
    
    .formulario_web .modal-header,
    .formulario_web .modal-body,
    .formulario_web .modal-footer {
        padding: 15px;
    }
    
    .formulario_web .markdown-editor-container {
        flex-direction: column;
        height: 400px;
    }
    
    .formulario_web .markdown-stats {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-height: 600px) {
    .formulario_web .modal-content {
        max-height: 95vh;
    }
    
    .formulario_web .markdown-editor-container {
        height: 300px;
    }
}

/* Estilos para o editor de termos */
.formulario_web .modal-body textarea {
    resize: vertical;
    min-height: 150px;
}

/* Estilos para labels na modal */
.formulario_web .modal-body .info {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

/* Melhor espaçamento entre seções */
.formulario_web .modal-body .flex-col > div {
    margin-bottom: 20px;
}

.formulario_web .modal-body .flex-col > div:last-child {
    margin-bottom: 0;
} 