.pwa-account-actions {
  display: grid;
  gap: 2px;
}

.pwa-account-action {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0.8rem;
  border: 0;
  border-radius: 0.4rem;
  background: transparent;
  color: #143b63;
  box-shadow: none;
  font: 700 0.9rem/1.4 Tajawal, Arial, sans-serif;
  text-align: start;
  white-space: nowrap;
  cursor: pointer;
}

.pwa-account-action:hover {
  background: #f3f7fb;
  color: #087b70;
}

.pwa-account-action:focus-visible {
  outline: 3px solid rgba(13, 119, 114, 0.28);
  outline-offset: -3px;
}

.pwa-account-action[hidden] {
  display: none !important;
}

.pwa-account-action__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.pwa-account-action__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pwa-inline-actions {
  direction: rtl;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
  margin-inline-start: auto;
}

.pwa-inline-actions .pwa-account-action {
  width: auto;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid #d8e4e1;
  background: #fff;
}

.pwa-inline-actions--standalone {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 8px max(16px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid #d8e4e1;
  background: #fff;
}

@media (max-width: 720px) {
  .pwa-inline-actions .pwa-account-action {
    width: 38px;
    min-width: 38px;
    padding: 7px;
    justify-content: center;
  }

  .pwa-inline-actions .pwa-account-action > span:last-child {
    display: none;
  }
}

@media print {
  #thakiPwaActions,
  .pwa-account-actions,
  .pwa-inline-actions,
  .pwa-account-action {
    display: none !important;
  }
}
