/* Kapsamlı BAVM frontend form CSS + Unified Harita Entegrasyonu */
.bavm-unified-registration {
    max-width: 650px; 
    margin: 40px auto; 
    background: #fff; 
    border-radius: 8px; 
    padding: 32px 28px; 
    box-shadow: 0 2px 16px #dde4ef6b;
}

.bavm-unified-registration h3 { 
    margin-top: 2em; 
    margin-bottom: 1em; 
    color: #333; 
    border-bottom: 2px solid #1976d2; 
    padding-bottom: 0.5em; 
}

.form-row { 
    margin-bottom: 1.4em; 
    position: relative; 
}

.form-row label { 
    font-weight: 500; 
    color: #222; 
    display: block; 
    margin-bottom: 4px; 
}

.form-row input, 
.form-row select, 
.form-row textarea {
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ccd8ef; 
    border-radius: 4px; 
    font-size: 16px; 
    background: #f8fafb;
    transition: all 0.2s;
}

.form-row input:focus, 
.form-row select:focus, 
.form-row textarea:focus { 
    border-color: #1976d2; 
    background: #fff; 
}

.required { 
    color: #dc3232; 
    margin-left: 3px; 
}

.description {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Koşullu alanlar */
.magaza-fields, 
.company-extra, 
.kep-extra, 
.conditional-field, 
.belge-fields,
.vendor-company-fields,
.vendor-sirket-fields { 
    display: none; 
}

/* Radio butonlar */
.radio-label {
    display: inline-block;
    margin-right: 20px;
    font-weight: 400;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

/* Belge yükleme alanları */
.bavm-document-field { 
    background: #f7f7fa; 
    border-radius: 6px; 
    border: 1px solid #cce2ff; 
    padding: 14px; 
    margin-bottom: 12px; 
}

.bavm-document-field label { 
    font-weight: 600; 
}

.bavm-document-field .upload-status { 
    margin-top: 8px; 
}

.bavm-document-field .loading { 
    color: #1976d2; 
    font-style: italic; 
}

.bavm-document-field .success { 
    color: #28a745; 
}

.bavm-document-field .error { 
    color: #dc3232; 
}

.bavm-document-field .file-info {
    margin-left: 10px;
    color: #666;
    font-size: 13px;
}

.bavm-document-field .view-doc {
    margin-left: 10px;
    color: #1976d2;
    text-decoration: none;
}

.bavm-document-field .view-doc:hover {
    text-decoration: underline;
}

.bavm-document-field .delete-doc {
    margin-left: 10px;
    background: #dc3232;
    color: #fff;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.bavm-document-field .delete-doc:hover {
    background: #a02222;
}

/* 🆕 YENİ: Unified Harita Entegrasyonu - Mağaza Konumu */
.harita-map {
    height: 300px;
    margin: 15px 0;
    border: 2px solid #1976d2;
    border-radius: 8px;
    background: #f8fafb;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.harita-map:hover {
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.2);
    border-color: #1565c0;
}

.harita-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 50%, #1976d2 100%);
    z-index: 1;
}

/* Harita yüklenirken loading state */
.harita-map:empty::after {
    content: '🗺️ Harita yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 16px;
    z-index: 2;
}

/* Harita butonları */
.harita-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 10px 10px 0;
    padding: 10px 16px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
    user-select: none;
    white-space: nowrap;
    min-height: 40px;
    position: relative;
    overflow: hidden;
}

.harita-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.4s ease;
}

.harita-btn:hover::before {
    left: 100%;
}

.harita-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
    border-color: #42a5f5;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
}

.harita-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.harita-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.harita-btn.harita-locate {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.harita-btn.harita-locate:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

/* Paket Servis Form Stilleri */
#paket-form-registration {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border: 2px solid #bbdefb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

#paket-form-registration::before {
    content: '📦';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
}

#paket-form-registration h4 {
    margin: 0 0 15px 0;
    color: #1976d2;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #e3f2fd;
    padding-bottom: 8px;
}

#paket-form-registration .form-row {
    margin-bottom: 12px;
}

#paket-form-registration label {
    font-weight: 500;
    color: #1565c0;
    margin-bottom: 6px;
}

#paket-form-registration input,
#paket-form-registration select {
    border: 1px solid #bbdefb;
    border-radius: 4px;
    padding: 8px 12px;
    background: #fff;
    transition: all 0.2s ease;
}

#paket-form-registration input:focus,
#paket-form-registration select:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

/* Paket servis checkbox'ları */
#paket-form-registration .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#paket-form-registration .checkbox-label:hover {
    background: rgba(25, 118, 210, 0.05);
}

#paket-form-registration .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1976d2;
    margin: 0;
}

/* Çalışma günleri grid */
#paket-form-registration .form-row:last-child > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

/* Checkbox alanları */
.checkbox-label { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 400; 
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(25, 118, 210, 0.05);
}

.checkbox-label input[type="checkbox"] { 
    accent-color: #1976d2; 
    width: 18px; 
    height: 18px; 
    margin: 0;
}

/* Sözleşme önizleme linkleri */
.bavm-sozlesme-onizle {
    color: #1976d2;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #bbdefb;
    background: #e3f2fd;
    transition: all 0.2s ease;
}

.bavm-sozlesme-onizle:hover {
    text-decoration: none;
    color: #fff;
    background: #1976d2;
    border-color: #1976d2;
    transform: translateY(-1px);
}

.checkbox-label .bavm-sozlesme-onizle {
    display: inline-block;
    vertical-align: middle;
}

/* Butonlar */
.button { 
    background: #1976d2; 
    color: #fff; 
    border: none; 
    padding: 10px 22px; 
    border-radius: 5px; 
    font-size: 16px; 
    font-weight: 500; 
    transition: .2s; 
    cursor: pointer;
}

.button:hover { 
    background: #124c87; 
}

.button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Bildirim mesajları */
.bavm-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    background: #f0f0f1;
    border-left: 4px solid #1976d2;
}

.bavm-notice.error {
    background: #fef7f7;
    border-left-color: #dc3232;
    color: #a00;
}

.bavm-notice.success {
    background: #f0f8f0;
    border-left-color: #46b450;
    color: #32373c;
}

/* IBAN formatı için */
input#iban {
    font-family: monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mağaza URL alanı stilleri */
.store-url-wrapper {
    position: relative;
}

.store-url-preview {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.store-url-preview #url_preview {
    font-weight: 600;
    color: #1976d2;
}

#dokan_store_url {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.5px;
}

#dokan_store_url[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

#dokan_store_url.checking {
    background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

/* Mağaza URL doğrulama durumları */
#dokan_store_url.valid {
    border-color: #46b450;
}

#dokan_store_url.invalid {
    border-color: #dc3545;
}

/* Mağaza URL yardım metni */
.store-url-help {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

.store-url-suggestion {
    margin-top: 5px;
    padding: 8px;
    background: #e8f4f8;
    border: 1px solid #b8dae8;
    border-radius: 4px;
    font-size: 13px;
}

.store-url-suggestion strong {
    color: #1976d2;
}

/* 🆕 YENİ: Harita koordinat input'ları (gizli ama styling için) */
input[name="vendor_lat"],
input[name="vendor_lng"],
#harita-vendor-location {
    display: none !important;
}

/* 🆕 YENİ: Harita error state */
.harita-map.error {
    border-color: #dc3232;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.1);
}

.harita-map.error::before {
    background: linear-gradient(90deg, #dc3232 0%, #f44336 50%, #dc3232 100%);
}

/* 🆕 YENİ: Mapbox popup override (BAVM formunda) */
.bavm-unified-registration .mapboxgl-popup-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    font-family: inherit;
    padding: 16px;
    max-width: 300px;
}

.bavm-unified-registration .mapboxgl-popup-content h4 {
    margin: 0 0 8px 0;
    color: #1976d2;
    font-size: 14px;
    font-weight: 600;
}

.bavm-unified-registration .mapboxgl-popup-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .bavm-unified-registration {
        margin: 20px auto;
        border-radius: 0;
    }
    
    .radio-label {
        display: block;
        margin-bottom: 10px;
    }
    
    .store-url-preview {
        font-size: 12px;
        word-break: break-all;
    }
    
    /* 🆕 YENİ: Mobil harita */
    .harita-map {
        height: 250px;
        margin: 10px 0;
    }
    
    .harita-btn {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }
    
    #paket-form-registration {
        padding: 15px;
    }
    
    #paket-form-registration .form-row:last-child > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bavm-unified-registration { 
        padding: 14px 7px; 
    }
    
    .bavm-sozlesme-onizle {
        display: block;
        margin-top: 5px;
        margin-left: 24px;
        text-align: center;
    }
    
    .checkbox-label {
        flex-wrap: wrap;
    }
    
    .form-row input,
    .form-row select,
    .form-row textarea {
        font-size: 16px; /* iOS zoom engellemek için */
    }
    
    /* 🆕 YENİ: Çok küçük ekranlarda harita */
    .harita-map {
        height: 200px;
    }
    
    #paket-form-registration .form-row:last-child > div {
        grid-template-columns: 1fr;
    }
    
    .checkbox-label {
        font-size: 14px;
    }
}

/* Yükleme animasyonu */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1976d2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form elementleri için ek stiller */
textarea {
    min-height: 80px;
    resize: vertical;
}

select:invalid {
    color: #999;
}

select option {
    color: #000;
}

select option[value=""] {
    color: #999;
}

/* Zorunlu alan işareti için hover efekti */
.required {
    cursor: help;
    position: relative;
}

.required:hover:after {
    content: 'Zorunlu alan';
    position: absolute;
    left: 100%;
    top: -5px;
    background: #333;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    white-space: nowrap;
    margin-left: 5px;
}

/* Form başarılı gönderim mesajı */
.bavm-form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Form hata mesajı */
.bavm-form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Placeholder stilleri */
::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}
::-moz-placeholder {
    color: #999;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}
:-moz-placeholder {
    color: #999;
    opacity: 1;
}

/* Checkout sözleşme alanları için düzeltme */
.bavm-general-agreements {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.bavm-general-agreements h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    border-bottom: 2px solid #1976d2;
    padding-bottom: 8px;
}

.bavm-contract-checkboxes {
    margin-bottom: 15px;
}

.bavm-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.bavm-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1976d2;
}

.bavm-contract-text {
    flex: 1;
    line-height: 1.5;
}

.bavm-contract-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}

.bavm-contract-link:hover {
    text-decoration: underline;
    color: #124c87;
}

.bavm-contract-notice {
    background: #e8f4f8;
    border: 1px solid #b8dae8;
    border-radius: 4px;
    padding: 10px;
    margin-top: 10px;
}

.bavm-contract-notice p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.bavm-contract-notice .dashicons {
    font-size: 14px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Buton düzeltmeleri - GÜNCELLENMIŞ VERSİYON */
.bavm-submit-btn {
    position: relative;
    min-width: 150px;
    min-height: 44px;
    display: inline-flex; /* flex yerine inline-flex - daha iyi uyumluluk */
    align-items: center;
    justify-content: center;
    background: #1976d2 !important; /* Tema override koruması */
    color: #fff !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease; /* Smooth transitions */
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    user-select: none; /* Text seçimini engelle */
}

/* Hover durumu */
.bavm-submit-btn:hover:not(:disabled) {
    background: #1565c0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.4);
}

/* Disabled durumu */
.bavm-submit-btn:disabled {
    background: #bdbdbd !important;
    color: #757575 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    opacity: 0.7;
}

/* Focus durumu (accessibility) */
.bavm-submit-btn:focus {
    outline: 2px solid #42a5f5;
    outline-offset: 2px;
}

/* Active durumu */
.bavm-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.bavm-submit-btn .button-text {
    display: block;
    transition: opacity 0.3s ease; /* Smooth fade efekti */
}

.bavm-submit-btn .button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10; /* ÖNEMLİ: Üstte kalması için */
    background: rgba(25, 118, 210, 0.1); /* Subtle background */
    border-radius: 4px;
    padding: 4px 12px;
    white-space: nowrap; /* Metin kırılmasını engelle */
}

.bavm-submit-btn.loading .button-text {
    opacity: 0;
    visibility: hidden; /* Tam gizleme */
}

.bavm-submit-btn.loading .button-loader {
    display: flex; /* Better alignment */
    align-items: center;
    gap: 8px;
}

.bavm-submit-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: bavm-spin 1s linear infinite; /* Benzersiz animasyon adı */
    flex-shrink: 0; /* Boyut koruması */
}

/* Benzersiz spinner animasyonu (spin çakışmasını önler) */
@keyframes bavm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .bavm-submit-btn {
        min-width: 120px;
        width: 100%; /* Full width mobilde */
        padding: 14px 20px;
        font-size: 16px; /* iOS zoom engellemek için */
    }
}

@media (max-width: 480px) {
    .bavm-submit-btn {
        min-width: 100px;
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .bavm-submit-btn .button-loader {
        padding: 2px 8px;
        font-size: 14px;
    }
}

/* Tema override koruması */
.bavm-unified-registration .bavm-submit-btn,
.bavm-unified-registration .bavm-submit-btn:visited {
    background: #1976d2 !important;
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
}

/* Giriş yapmış kullanıcılar için mesaj */
.bavm-already-registered {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

.bavm-already-registered .bavm-notice {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    border: none;
}

.bavm-already-registered h3 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.5em;
}

.bavm-already-registered p {
    margin: 10px 0;
    font-size: 1.1em;
}

.bavm-action-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bavm-action-buttons .button {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.bavm-action-buttons .button-primary {
    background: white;
    color: #4facfe;
    border: 2px solid white;
}

.bavm-action-buttons .button-primary:hover {
    background: transparent;
    color: white;
}

.bavm-action-buttons .button:not(.button-primary) {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.bavm-action-buttons .button:not(.button-primary):hover {
    background: white;
    color: #4facfe;
}

/* 🆕 YENİ: Harita koordinat validasyon mesajları */
.harita-validation-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.harita-validation-error::before {
    content: '⚠️';
    font-size: 16px;
}

/* 🆕 YENİ: Harita başarı mesajı */
.harita-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.harita-success::before {
    content: '✓';
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .bavm-action-buttons {
        flex-direction: column;
    }
    
    .bavm-action-buttons .button {
        width: 100%;
    }
    
    /* 🆕 YENİ: Mobil harita butonları */
    .harita-btn {
        font-size: 13px;
        padding: 8px 12px;
        min-height: 36px;
    }
}