
.gold-board {
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #2c2c2c;
    padding: 15px;

    font-family: 'Tajawal', sans-serif;
    flex-wrap: wrap;
}
.gold-item {
  text-align: center;
  color: #fff;
  min-width: 90px;
  border-left: 1px solid #ffffff17;
}

.gold-item:first-child {
    border-left: none;
}

.label {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}
span.label-fas {
    color: white;
    font-size: 2rem;
}


.price {
  font-weight: bold;
  font-size: 20px;
  display: block;
}
.arrow {
  font-size: 20px;
  display: block;
  -webkit-text-stroke: 2px white;
}
.arrow.up {
  color: #00ff00;
  -webkit-text-stroke: 2px #00ff00 !important;
}
.arrow.down {
  color: #ff4040;
  -webkit-text-stroke: 2px #ff4040 !important;
}
.price.up {
  color: #00ff00;
}
.price.down {
  color: #ff4040;
}

.sar-icon {
  display: block;
  margin: 4px auto 0;
  width: 20px;
  height: auto;
}
  .sar-icon path {
    fill: #ffffff; /* اللون الافتراضي أبيض */
    transition: fill 0.4s ease;
  }
  .sar-icon.up path {
    fill: #00c853; /* أخضر */
  }
  .sar-icon.down path {
    fill: #ff1744; /* أحمر */
  }