/* لوحة الإجراءات السريعة داخل القائمة الجانبية - تظهر فقط على الموبايل */
#sb-quick-actions {
  display: none;
  margin: 12px 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

#sb-quick-actions .sb-qa-title {
  font-size: 12px;
  opacity: 0.7;
  margin: 0 0 8px;
  padding: 0 4px;
  font-weight: 600;
}

#sb-quick-actions .sb-qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

#sb-quick-actions .sb-qa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  min-height: 40px;
  text-align: center;
}

#sb-quick-actions .sb-qa-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

#sb-quick-actions .sb-qa-btn:active {
  transform: scale(0.97);
}

#sb-quick-actions .sb-qa-btn[hidden] {
  display: none !important;
}

/* أظهر اللوحة فقط على شاشات الموبايل */
@media (max-width: 720px) {
  #sb-quick-actions {
    display: block;
  }
}
/* إخفاء الأزرار الأصلية من الشريط العلوي على الموبايل */
@media (max-width: 720px) {
  #remind-btn,
  #update-btn,
  #install-btn,
  #fullscreen-btn,
  #logout-btn {
    display: none !important;
  }
}
/* إخفاء الأزرار الأصلية من الشريط العلوي على الموبايل */
@media (max-width: 720px) {
  #btn-notif,
  #btn-auth-logout,
  #sheets-refresh-btn,
  #btn-install,
  #btn-fullscreen {
    display: none !important;
  }
}
