/* Yer Ekleme Formu Stilleri */
.yer-form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.yer-form-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.yer-form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.yer-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.yer-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Remove native dropdown arrow and use subtle SVG background for selects */
.form-group select,
.form-select,
.yer-form-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 12px;
    padding-right: 36px; /* room for custom arrow */
}

/* hide IE/Edge dropdown caret */
.form-group select::-ms-expand { display: none; }

/* subtle custom arrow via data-URI SVG (dark muted) */
.form-group select,
.form-select,
.yer-form-container select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

.form-group textarea {
    min-height: 100px;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

.form-group input[type="file"] {
    border: 1px dashed #ddd;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
    background: #f8f8f8;
}

.help-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.button.button-primary {
    background: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.button.button-primary:hover {
    background: #45a049;
}

/* Harita Container */
#yer-map {
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .yer-form-container {
        padding: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="number"],
    .form-group textarea,
    /* cleared: form styles removed per user request */
        font-size: 14px;
