    /* استایل‌های کارت آدرس */
.card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-check-input {
    margin-top: 0.3rem;
    transform: scale(1.2);
}

.card-title {
    color: var(--secondary-color);
    font-weight: 500;
}

/* استایل‌های نقشه */
.map-section {
    margin-top: 2rem;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.header p {
    color: #666;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
}

.leaflet-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* دکمه‌های روی نقشه */
.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-btn {
    background: white;
    border: 2px solid #9F051D;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #9F051D;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 120px;
}

.map-btn:hover {
    background: #9F051D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(159, 5, 29, 0.1);
}

.form-control:read-only {
    background-color: var(--light-bg);
    color: #6c757d;
}

.form-control.editable {
    background-color: white;
    color: #333;
    border-color: var(--success-color);
}

.coordinates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-box {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
    border-right: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.address-actions .btn {
    flex: 0 1 auto;
    padding: 8px 12px;
    font-size: 13px;
}

.hidden-section {
    display: none;
    margin-top: 2rem;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    #map {
        height: 300px;
    }

    .coordinates {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .address-actions {
        flex-direction: column;
    }

    .progress-bar {
        margin: 0 30px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .map-controls {
        top: 5px;
        right: 5px;
    }

    .map-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .progress-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .progress-step {
        width: 33%;
        margin-bottom: 1rem;
    }

    .progress-bar {
        display: none;
    }

    body {
        padding: 10px;
    }

    .map-btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 90px;
    }
}
