.kd-container {
  height: 100vh; /* 100% of viewport height */
  width: 100vw; /* 100% of viewport width */
  background-color: var(--background-color, #eef2f1);
  display: flex;
  flex-direction: column;
}

.kd-dark-theme {
  --background-color: rgba(0, 0, 0, 0.03);
  --text-color: #ffffff;
}

.kd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: lemonchiffon;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 20px;
  z-index: 100; /* Add a z-index to make sure the header appears on top of other content */

}

.kd-header-logo {
  width: 70%;
  height: auto;
  padding: 10px;
}

.kd-content {
  padding-top: 70px; /* Adjust this value to create the desired spacing below the header */
}

.kd-verticalspace {
  margin-bottom: 70px;
}

.kd-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.03);
  color: #fff;
  padding: 10px;
}

.kd-mobile-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.03);
  color: #fff;
}

.kd-header-left {
  display: flex;
  align-items: center;
}

.kd-header-name {
  margin-right: 20px;
  font-size: 18px;
}

.kd-header-right {
  display: flex;
  align-items: center;
}

.kd-header-button {
  background-color: #2e2c2c;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.kd-header-right i {
  font-size: 17px; /* Adjust the desired size */
}

.d-flex p {
  color: #fff; /* Set text color to white for p elements inside .d-flex */
}

.kd-fullwidth {
  background-color: #383636;
  height: 100vh;
}

.left-span {
  text-align: left;
}

.right-span {
  text-align: right;
}

.trade-tag {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-size: large;
}

.order-tag {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-size: medium;
}

.buy {
  color: green;
  background-color: whitesmoke;
}

.sell {
  color: red;
  background-color: whitesmoke;
}

.complete {
  color: green;
  background-color: whitesmoke;
}

.cancel {
  color: #383636;
  background-color: whitesmoke;
}

.reject {
  color: #383636;
  background-color: whitesmoke;
}