body, html {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Arial, sans-serif;
  }
  .top-navbar {
    background-color: #007AFF;
    color: #fff;
  }
  .middle-navbar {
    background-color: #f8f9fa;
  }
  .content {
    background-color: #000;
    color: #fff;
  }
  .navbar-brand img {
    max-width: 100%; /* Ensure images do not exceed container width */
    height: auto; /* Maintain aspect ratio */
  }
  .navbar-brand .icon {
    width: 30px;
    height: 30px;
  }
  .navbar-brand .iconvalue {
    display: none;
  }
  .clock-select {
  position: relative;
  display: inline-block; /* Ensures that the wrapper only takes as much space as necessary */
}

.clock-select svg {
  position: absolute;
  top: 50%;
  left: 8px; /* Adjust this value to position the clock SVG as needed */
  transform: translateY(-50%);
}
.iconvalue{
  color : black;
  font-family: 'Iranyekan', sans-serif;
  font-weight: bold;
}

.price-container {

    text-align: center;
}
.price {
    font-size: 3rem;
}
.fraction {
    font-size: 1rem;
    vertical-align: super;
}
.low-high {
    color: gray;
}
@media (min-width: 768px) {
    .input-group {
        margin: 0 10px;
        width: calc(50% - 20px);
    }
}
ul{
    text-align: right;
    direction: rtl
  }
/* @media (max-width: 767.98px) {
    .price-container {
        margin-bottom: 1rem;
    }
}
.transaction-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.header .back-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.header .title {
    font-size: 20px;
}

.content {
    padding: 20px;
}

.trade-type {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.trade-type span {
    flex: 1;
    align-self: center;
    font-size: 18px;
}

.trade-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
}

.trade-button.active {
    background-color: #0056b3;
}

.prices {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price span {
    font-size: 24px;
    color: #007bff;
}

.price label {
    font-size: 14px;
    color: gray;
}

.input-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.input-field {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    width: 45%;
}

.chart {
    margin-bottom: 20px;
}

.chart-img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.actions {
    display: flex;
    justify-content: space-between;
}

.sell-button,
.buy-button {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

.sell-button {
    background-color: #dc3545;
    color: white;
}

.buy-button {
    background-color: #28a745;
    color: white;
} */