/* Genel Sayfa Ayarları */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
}

header {
    text-align: center;
    padding: 24px 20px;
    background: #1a1a1a;
    color: white;
}

header h1 {
    margin: 0 0 6px 0;
    font-size: 22px;
}

.alt-baslik {
    margin: 0 0 16px 0;
    color: #cfd8dc;
    font-size: 14px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

#ekle-buton {
    background: #2ecc71;
    color: #0a2e1a;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.15s, background 0.15s;
}

#ekle-buton:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

#ipucu {
    display: none;
    margin: 12px auto 0 auto;
    color: #ffd54f;
    font-size: 14px;
    font-weight: 500;
}

/* Harita Çerçevesi */
#map-container {
    width: 95%;
    max-width: 1200px;
    height: 70vh;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 3px solid #fff;
}

#map { width: 100%; height: 100%; }

/* Bildirimler */
#basari-mesaji, #hata-mesaji {
    display: none;
    max-width: 500px;
    margin: 0 auto 16px auto;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#basari-mesaji {
    background: #e8f8ef;
    color: #1B4332;
    border: 1px solid #2ecc71;
}

#hata-mesaji {
    background: #fdecea;
    color: #a12a1e;
    border: 1px solid #e57373;
}

/* Kayıt Formu Paneli */
#form-panel {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#form-panel-inner {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 22px 24px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

#form-panel-inner h2 {
    margin: 0 0 16px 0;
    font-size: 18px;
    color: #1a1a1a;
}

#form-kapat {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

#form-kapat:hover { color: #333; }

#form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin: 12px 0 5px 0;
}

#form input, #form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    resize: vertical;
}

#form input:focus, #form textarea:focus {
    outline: none;
    border-color: #1B4332;
}

.form-buton-satiri {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.form-buton-satiri button {
    flex: 1;
    padding: 11px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#iptal-buton {
    background: #f0f2f5;
    color: #555;
}

#iptal-buton:hover { background: #e0e0e0; }

#gonder-buton {
    background: #1B4332;
    color: #fff;
}

#gonder-buton:hover { background: #143325; }
#gonder-buton:disabled { opacity: 0.6; cursor: default; }

/* Info Window İçeriği */
.info-content { max-width: 220px; text-align: center; padding: 6px; }
.info-content h3 { margin: 0 0 6px 0; color: #2ecc71; font-size: 16px; }
.info-content p { margin: 0 0 4px 0; font-size: 13px; color: #333; line-height: 1.4; }
.info-content .mesaj { font-style: italic; color: #666; }
