@font-face {
  font-family: "Iran Yekan";
  src: url("assets/assets/fonts/IRANYekanX-Regular.ttf") format("truetype");
}

body {
  font-family: "Iran Yekan", sans-serif;
  margin: 0;
  padding: 0;
}

#pwa-install-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 20px;
  direction: rtl;
  animation: slide-up 0.3s ease-out;
}

.install-dialog {
  text-align: center;
  position: relative;
}

.install-dialog img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.install-dialog h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.install-dialog p {
  font-size: 14px;
  margin-bottom: 15px;
}

.install-dialog button {
  background: #c2185b;
  color: white;
  border: none;
  padding: 8px 24px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

#closeInstall {
  position: absolute;
  top: 10px;
  right: 10px; /* این خط رو تغییر دادم به جای left */
  font-size: 20px;
  cursor: pointer;
  color: #666;
}
#installBtn{
  font-family: "Iran Yekan", sans-serif;
  font-size: 15px;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
