:root {
  --primary-blue: #2196F3;
  --gold: #FFD700;
  --orange: #FF9800;
  --bg-light: #F5F5F5;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-light);
}

.app-bar {
  background-color: var(--primary-blue);
  color: white;
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  border-bottom: 3px solid white;
  font-weight: bold;
}

.search-container {
  padding: 15px;
}

#searchInput {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.list-view {
  list-style: none;
  padding: 0;
  margin: 0 15px;
}

.list-item {
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.sura-number {
  color: var(--orange);
  font-weight: bold;
  border: 2px solid var(--orange);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
                /* إلغاء التحديد الأزرق عند الضغط في جميع الصفحات */
                * {
                  -webkit-tap-highlight-color: transparent;
                  /* للموبايل (Chrome, Safari) */
                  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                  /* زيادة تأكيد للموبايل */
                }
        
                /* إلغاء الإطار الأزرق (Outline) الذي يظهر عند الضغط بالماوس أو الكيبورد */
                *:focus {
                  outline: none !important;
                }
        
                /* منع اختيار النصوص في الأزرار ليعطي إحساس تطبيق حقيقي */
                button,
                .menu-btn,
                .choice-card,
                .menu-card {
                  user-select: none;
                  -webkit-user-select: none;
                }