/* ===================================================== */
/* تنسيقات صفحة البايو - bio-page.css                   */
/* ===================================================== */

/* أزرار الحسابات - تحسين التنسيق */
.account-btn .btn-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: -32px;
}

.account-btn .btn-content .platform-name-en {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    direction: ltr;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* تنسيق الموقع */
.location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    margin: 10px auto;
    max-width: 400px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    font-weight: bold;
    font-size: 1rem;
    color: #2d3748;
}

.location-header i {
    color: #667eea;
}

.location-map-preview {
    height: 200px;
    background: #f0f4ff;
    position: relative;
}

.location-map-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-map-preview .map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #718096;
    font-size: 0.85rem;
}

/* تحسينات للجوال */
@media (max-width: 600px) {
    .account-btn .btn-content {
        margin-right: -28px;
    }
    .account-btn .btn-content .platform-name-en {
        font-size: 10px;
    }
    .location-map-preview {
        height: 140px;
    }
}