body {
  font-family: 'Vazirmatn', sans-serif; /* Changed font-family to Vazirmatn */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f9f9f9;
  overflow: hidden;
}

h1 {
  font-size: 20px;
  color: rgb(143, 164, 255);
  position: absolute;
  top: 10px;
  left: 20px;
}

.circle-container {
  position: relative;
}

.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spinner {
  width: 170px;
  height: 170px;
  border: 5px solid transparent;
  border-top: 5px solid rgba(0, 123, 255, 1);
  border-radius: 50%;
  position: absolute;
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-text {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.31);
  text-align: center;
  z-index: 2;
}

#file-name {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.actions {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 300px;
  bottom: 20px;
}

.action-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

#refresh-circle {
  background-color: rgba(0, 122, 255, 1);
}

#download-circle {
  background-color: rgba(52, 199, 89, 1);
}

#donate-circle {
  background-color: rgba(255, 204, 0, 1);
}

.actions .fa-solid {
  color: rgb(255, 255, 255);
}
