body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #ffffff;
    margin: 0;
}

/* تخطيط الصفحة */
.google-simulator-layout {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* لوحة الإدخال */
.input-panel {
    width: 400px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* تسميات */
.input-panel label {
    font-weight: bold;
    color: #1e00c9;
}

/* مدخلات النص */
.input-panel input,
.input-panel textarea {
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
    width: 100%;
    background-color: #c6f1f2;
    text-align: center;
}

/* مجموعة إدخال الرابط */
.url-input-group {
    display: flex;
    gap: 10px;
}

/* زر جلب البيانات */
#fetch-btn {
    background-color: #007bff;   /* ✅ أزرق */
    color: #ffffff;              /* ✅ أبيض */
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#fetch-btn:hover {
    background-color: #0056b3;   /* ✅ أزرق داكن عند التحويم */
}
/* أزرار اختيار الجهاز */
.device-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.device-buttons button {
    flex: 1;
    background-color: #00c9a7;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.device-buttons button:hover {
    background-color: #009e8c;
}

/* المعاينة */
.google-preview {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    direction: rtl;
    max-width: 800px;
}

.google-preview.mobile-mode {
    max-width: 400px;
}

.google-logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 20px auto;
}

/* محاكاة Google */
.google-search-box {
    background-color: #ffffff;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

/* شريط البحث */
.search-bar-fake {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-bar-fake input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #f0f0f0;
    font-size: 15px;
    text-align: right;
}

.search-bar-fake .search-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #888;
}

/* علامات التبويب */
.google-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.google-tabs span {
    cursor: pointer;
}

.google-tabs .active {
    color: #1a0dab;
    border-bottom: 2px solid #1a0dab;
}

/* معلومات البحث */
.search-meta {
    font-size: 13px;
    color: #70757a;
    margin-bottom: 15px;
    text-align: right;
}

/* نتيجة البحث */
.search-result {
    direction: rtl;
    text-align: right;
}

.search-url {
    font-size: 14px;
    color: #006621;
    margin-bottom: 4px;
    word-break: break-word;
}

.search-title {
    font-size: 18px;
    color: #1a0dab;
    margin-bottom: 4px;
}

.search-description {
    font-size: 14px;
    color: #545454;
    line-height: 1.6;
}

/* تنسيق عناصر الإدخال */
#input-title,
#input-desc {
    max-width: 90%;
    margin-inline: auto;
}
