/* YENİ YAZI STİLLERİ */
.yazi-ekleme-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.yazi-ekleme-icerik {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-width: 300px;
    max-width: 500px;
}

.yazi-ekleme-icerik h3 {
    margin-bottom: 15px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.yazi-input-grup {
    margin-bottom: 20px;
}

.yazi-input-grup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--koyu-renk);
}

#yaziInput {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#yaziInput:focus {
    outline: none;
    border-color: var(--ikincil-renk);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.yazi-butonlar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.yazi-boyut-grup {
    margin-bottom: 15px;
}

.yazi-boyut-ayar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.yazi-boyut-deger {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--ikincil-renk);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ikincil-renk);
    cursor: pointer;
}

.yazi-rengi-grup {
    margin-bottom: 15px;
}

.yazi-renk-secici {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.renk-secim {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.renk-secim:hover {
    transform: scale(1.1);
}

.renk-secim.aktif {
    border-color: #2c3e50;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--ikincil-renk);
}

/* HARİTA ÜZERİNDEKİ YAZI STİLLERİ */
.harita-yazisi {
    font-weight: bold;
    text-shadow: 
        -1px -1px 0 white,  
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
    cursor: move;
    user-select: none;
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.harita-yazisi:hover {
    background: rgba(255, 255, 255, 0.5);
    z-index: 1000 !important;
}

.leaflet-div-icon.yazi-div-icon {
    background: transparent;
    border: none;
    width: auto !important;
    height: auto !important;
}

.yazi-sil-buton {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.harita-yazisi:hover .yazi-sil-buton {
    display: flex;
}

/* YAZI MODU BİLGİSİ */
.yazi-mod-bilgisi {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    display: none;
}

.btn {
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    width: 220px;
    margin: 2rem auto 0;
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.btn:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.4);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.checkbox-item:hover {
    background: #e9ecef;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

:root {
    --ana-renk: #2c3e50;
    --ikincil-renk: #3498db;
    --vurgu-renk: #e74c3c;
    --acik-renk: #ecf0f1;
    --koyu-renk: #34495e;
    --basari-renk: #2ecc71;
    --uyari-renk: #f39c12;
    --kenar-yuvarlaklik: 8px;
    --kutu-golgesi: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.konteyner {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ÜST MENÜ */
.ust-menu {
    background: var(--ana-renk);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-alani {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-yazi {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-yazi span {
    color: #2ecc71;
}

.nav-menu {
    display: flex;
    gap: 10px;
}

.nav-buton {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: var(--kenar-yuvarlaklik);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-buton:hover {
    background: var(--ikincil-renk);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-buton.aktif {
    background: var(--basari-renk);
}

.baslik {
    background: var(--koyu-renk);
    color: white;
    padding: 25px;
    text-align: center;
}

.baslik h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.baslik p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

/* FORM BÖLÜMÜ */
.form-bolumu {
    padding: 30px;
    background: #f8f9fa;
    overflow-y: auto;
    max-height: 700px;
}

.form-baslik {
    margin-bottom: 25px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.form-baslik i {
    font-size: 1.5rem;
}

.form-grubu {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--koyu-renk);
    font-size: 0.9rem;
}

.form-kontrol {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: var(--kenar-yuvarlaklik);
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-kontrol:focus {
    outline: none;
    border-color: var(--ikincil-renk);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* TEK SATIRDA DÖRT BÖLÜM */
.tek-satir-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.tek-satir-form .form-grubu {
    margin-bottom: 0;
}

/* TEK SATIRDA İKİ BÖLÜM */
.iki-satir-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

.iki-satir-form .form-grubu {
    margin-bottom: 0;
}

.konum-adimlari {
    display: flex;
    margin-bottom: 25px;
    background: white;
    border-radius: var(--kenar-yuvarlaklik);
    padding: 5px;
    box-shadow: var(--kutu-golgesi);
}

.adim {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--kenar-yuvarlaklik);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.adim.aktif {
    background: var(--ikincil-renk);
    color: white;
}

.adim.tamamlandi {
    background: var(--basari-renk);
    color: white;
}

/* ENLEM BOYLAM BÖLÜMÜ */
.koordinat-bolumu {
    background: white;
    padding: 20px;
    border-radius: var(--kenar-yuvarlaklik);
    margin-top: 20px;
    border-left: 4px solid var(--uyari-renk);
}

.koordinat-bolumu h4 {
    margin-bottom: 15px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.buton {
    padding: 12px 25px;
    border: none;
    border-radius: var(--kenar-yuvarlaklik);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buton-uyari {
    background: var(--uyari-renk);
    color: white;
}

.buton-uyari:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.buton-basari {
    background: var(--basari-renk);
    color: white;
}

.buton-basari:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.butonlar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* HARİTA BÖLÜMÜ */
.harita-bolumu {
    position: relative;
    background: var(--acik-renk);
}

#harita {
    height: 100%;
    min-height: 600px;
    border-radius: 0;
}

/* AÇILIR MENÜLER */
.acilir-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.acilir-menu-tetikleyici {
    background: white;
    border: none;
    border-radius: var(--kenar-yuvarlaklik);
    padding: 12px 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--kutu-golgesi);
    transition: all 0.3s ease;
}

.acilir-menu-tetikleyici:hover {
    background: #f8f9fa;
}

.acilir-menu-icerik {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: white;
    border-radius: var(--kenar-yuvarlaklik);
    box-shadow: var(--kutu-golgesi);
    min-width: 200px;
    overflow: hidden;
    display: none;
}

.acilir-menu-icerik.aktif {
    display: block;
}

.acilir-menu-buton {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.acilir-menu-buton:last-child {
    border-bottom: none;
}

.acilir-menu-buton.aktif {
    background: var(--ikincil-renk);
    color: white;
}

.acilir-menu-buton:hover:not(.aktif) {
    background: #f8f9fa;
}

/* TEK SATIR KONUM BİLGİSİ */
.konum-bilgisi {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: var(--kenar-yuvarlaklik);
    box-shadow: var(--kutu-golgesi);
    z-index: 1000;
}

.konum-bilgisi h3 {
    margin-bottom: 12px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.konum-detaylari {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.konum-oge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: var(--kenar-yuvarlaklik);
    min-width: 0;
    flex: 1;
}

.konum-ikon {
    font-size: 1.1rem;
    color: var(--ikincil-renk);
    flex-shrink: 0;
}

.konum-icerik {
    min-width: 0;
    flex: 1;
}

.konum-etiket {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.konum-deger {
    font-weight: 700;
    color: var(--koyu-renk);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ÖLÇÜM BİLGİLERİ */
.olcum-bilgisi {
    position: absolute;
    top: 70px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: var(--kenar-yuvarlaklik);
    box-shadow: var(--kutu-golgesi);
    max-width: 300px;
    display: none;
}

.olcum-bilgisi h4 {
    margin-bottom: 10px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.olcum-verisi {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.olcum-verisi:last-child {
    margin-bottom: 0;
}

.olcum-etiket {
    font-weight: 600;
    color: var(--koyu-renk);
}

/* YENİ DOSYA YÜKLEME BÖLÜMÜ */
.dosya-yukleme-bolumu {
    background: white;
    padding: 20px;
    border-radius: var(--kenar-yuvarlaklik);
    margin-top: 20px;
    border-left: 4px solid var(--ikincil-renk);
}

.dosya-yukleme-alani {
    border: 2px dashed #dee2e6;
    border-radius: var(--kenar-yuvarlaklik);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dosya-yukleme-alani.drag-over {
    border-color: var(--basari-renk);
    background-color: rgba(46, 204, 113, 0.1);
}

.dosya-ikon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--ikincil-renk);
}

.dosya-yukleme-text {
    margin-bottom: 15px;
}

.dosya-yukleme-text h4 {
    color: var(--ana-renk);
    margin-bottom: 5px;
}

.dosya-yukleme-text p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* DOSYA GRID YAPISI */
.dosya-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.dosya-karti {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--kenar-yuvarlaklik);
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dosya-karti:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dosya-onizleme {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.dosya-onizleme img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.dosya-onizleme video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.pdf-onizleme {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2em;
    width: 100%;
    height: 100%;
}

.pdf-onizleme span {
    font-size: 0.3em;
    margin-top: 5px;
}

.dosya-bilgi {
    text-align: center;
}

.dosya-adi {
    font-weight: 600;
    color: var(--koyu-renk);
    margin-bottom: 5px;
    font-size: 0.85rem;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dosya-boyut {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.dosya-tipi {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tip-fotograf {
    background: #e3f2fd;
    color: #1976d2;
}

.tip-video {
    background: #f3e5f5;
    color: #7b1fa2;
}

.tip-pdf {
    background: #ffebee;
    color: #c62828;
}

.dosya-aksiyonlar {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.aksiyon-buton {
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sil-buton {
    background: #dc3545;
    color: white;
}

.sil-buton:hover {
    background: #c82333;
}

.goruntule-buton {
    background: #28a745;
    color: white;
}

.goruntule-buton:hover {
    background: #218838;
}

.bos-durum {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    grid-column: 1 / -1;
}

.bos-durum .ikon {
    font-size: 3em;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-icerik {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.modal-icerik img,
.modal-icerik video {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.modal-kapat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal {
    width: 80%;
    height: 90%;
}

.pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ÇİZİM STİLLERİ */
.leaflet-draw-tooltip {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #39ff14;
    color: #fff;
    font-weight: bold;
}

.leaflet-draw-tooltip:before {
    border-top-color: #39ff14;
}

/* ÇİZİM BİLGİLERİ */
.cizim-bilgisi {
    position: absolute;
    top: 250px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: var(--kenar-yuvarlaklik);
    box-shadow: var(--kutu-golgesi);
    max-width: 300px;
    display: none;
}

.cizim-bilgisi h4 {
    margin-bottom: 10px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cizim-verisi {
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 4px;
}

.cizim-verisi:last-child {
    margin-bottom: 0;
}

.cizim-etiket {
    font-weight: 600;
    color: var(--koyu-renk);
    display: inline-block;
    min-width: 80px;
}

.cizim-deger {
    color: #2c3e50;
}

/* FOSFORLU YEŞİL ÇİZGİ STİLLERİ */
.fosforlu-cizgi {
    stroke: #39ff14 !important;
    stroke-width: 5px !important;
    stroke-opacity: 0.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

.fosforlu-alan {
    stroke: #39ff14 !important;
    stroke-width: 3px !important;
    stroke-opacity: 0.9 !important;
    fill: #39ff14 !important;
    fill-opacity: 0.3 !important;
}

/* ÇİZİM İŞARETÇİLERİ */
.leaflet-div-icon.fosforlu {
    background: transparent;
    border: none;
}

.leaflet-div-icon.fosforlu:before {
    content: '📍';
    font-size: 24px;
    text-shadow: 0 0 10px #39ff14;
}

/* KAYIT DURUMU */
.kayit-durumu {
    margin-top: 15px;
    padding: 10px;
    background: #e8f4fd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.kayit-durumu div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.kayit-durumu strong {
    color: var(--ana-renk);
}

.kayit-durumu span {
    color: var(--ikincil-renk);
    font-weight: bold;
}

/* ÇİZİM KONTROL PANELİ */
.cizim-kontrol-paneli {
    position: absolute;
    top: 120px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: var(--kenar-yuvarlaklik);
    box-shadow: var(--kutu-golgesi);
    max-width: 300px;
    display: none;
}

.cizim-kontrol-paneli h4 {
    margin-bottom: 10px;
    color: var(--ana-renk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cizim-kontrol-butonlari {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.cizim-kontrol-buton {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: var(--kenar-yuvarlaklik);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cizim-kontrol-buton:hover {
    background: #f8f9fa;
    border-color: var(--ikincil-renk);
}

.cizim-kontrol-buton.aktif {
    background: var(--ikincil-renk);
    color: white;
    border-color: var(--ikincil-renk);
}

.cizim-kontrol-buton.dur {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.cizim-kontrol-buton.dur:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Responsive */
@media (max-width: 1200px) {
    .konum-detaylari {
        gap: 15px;
    }
    
    .konum-oge {
        min-width: 120px;
    }
    
    .tek-satir-form {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .dosya-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .icerik {
        grid-template-columns: 1fr;
    }
    
    .harita-bolumu {
        min-height: 400px;
    }
    
    .konum-detaylari {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tek-satir-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .ust-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
    }
    
    .dosya-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tek-satir-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .iki-satir-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .konum-adimlari {
        flex-direction: column;
    }
    
    .konum-detaylari {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .konum-oge {
        min-width: auto;
    }
    
    .butonlar {
        grid-template-columns: 1fr;
    }
    
    body {
        padding: 10px;
    }
    
    .konum-bilgisi {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 15px;
    }

    .acilir-menu {
        top: 10px;
        left: 10px;
    }
    
    .olcum-bilgisi {
        top: 60px;
        left: 10px;
    }
    
    .dosya-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buton {
        text-align: center;
        justify-content: center;
    }
    
    .cizim-bilgisi {
        top: 200px;
        left: 10px;
    }
    
    .cizim-kontrol-paneli {
        top: 150px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .konum-detaylari {
        flex-direction: column;
        align-items: stretch;
    }
    
    .konum-oge {
        justify-content: flex-start;
    }
    
    .tek-satir-form {
        grid-template-columns: 1fr;
    }
    
    .iki-satir-form {
        grid-template-columns: 1fr;
    }
    
    .dosya-grid {
        grid-template-columns: 1fr;
    }
}






/* Emlak Konum Seç butonu */
#emlakKonumSecButon {
    background: #227de6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

#emlakKonumSecButon:hover {
    background: #1156a5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#emlakKonumSecButon:active {
    transform: translateY(0);
}

/* Konum seçim modunda harita imleci */
.harita-konum-secim-modu {
    cursor: crosshair !important;
}

/* Özel işaretleyici stili */
.emlak-konum-isaretci {
    font-size: 30px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: isaretciBuyume 0.3s ease-out;
}

@keyframes isaretciBuyume {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Koordinat inputları vurgulama */
@keyframes inputVurgula {
    0% { background-color: #e8f4fd; }
    50% { background-color: #bde0fe; }
    100% { background-color: #e8f4fd; }
}

.input-vurgulu {
    animation: inputVurgula 1s ease;
}