﻿/* CodeMirror Özelleştirmeleri */
.CodeMirror {
    height: 500px;
    border: 1px solid #ddd;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Buton Grupları */
.btn-group-sm > .btn {
    margin: 0 2px;
}

/* Tablo Hizalamaları */
.table td {
    vertical-align: middle;
}

/* Karşılaştırma Container'ı */
.comparison-container {
    position: relative;
    height: 70vh;
    overflow-y: auto;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.comparison-content {
    padding: 15px;
    margin: 0;
    min-height: 100%;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Scrollbar Stilleri */
.comparison-container::-webkit-scrollbar {
    width: 12px;
}

.comparison-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.comparison-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    border: 3px solid #f1f1f1;
}

    .comparison-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Modal Boyutlandırma */
.modal-xl {
    max-width: 90%;
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1400px;
    }
}

/* Scroll Davranışı */
.scroll-sync {
    scroll-behavior: smooth;
}
