/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #ebebeb;
  direction: rtl;
  min-height: 100vh;
}

.topbar {
  background: #388e3c;
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tb-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}

.tb-title {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tb-menu {
  flex: 0 0 auto;
}

/* Generic icon button */
.ib {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
}

/* Red notification badge */
.notif-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 1.5px solid #388e3c;
}

/* ? circle button */
.qbtn {
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  flex-shrink: 0;
}
