
.nbrm-currency-box {
  width: 100%;
  background-color: rgba(0, 152, 248, 0.06);
  border: 1px solid rgba(0, 152, 248, 0.14);
  box-sizing: border-box;
  overflow: hidden;
}

.nbrm-currency-header {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(0, 152, 248, 0.12);
  color: #20447f;
}

.nbrm-currency-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nbrm-currency-item:last-child {
  border-bottom: none;
}

.nbrm-currency-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.nbrm-currency-flag {
  font-size: 12px;
  line-height: 1;
}

.nbrm-currency-code {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #1b1b1b;
}

.nbrm-currency-value {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #20447f;
  white-space: nowrap;
}

.nbrm-currency-empty {
  padding: 8px 10px;
  font-size: 12px;
  color: #666;
}

.nbrm-currency-box.layout-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nbrm-currency-box.layout-horizontal .nbrm-currency-item {
  flex: 1 1 33.333%;
  border-bottom: none;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 6px 8px;
}

.nbrm-currency-box.layout-horizontal .nbrm-currency-item:last-child {
  border-right: none;
}

.nbrm-currency-box.layout-horizontal .nbrm-currency-label,
.nbrm-currency-box.layout-horizontal .nbrm-currency-item {
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

@media (max-width: 767px) {
  .nbrm-currency-box.layout-horizontal {
    display: block;
  }

  .nbrm-currency-box.layout-horizontal .nbrm-currency-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nbrm-currency-box.layout-horizontal .nbrm-currency-item:last-child {
    border-bottom: none;
  }

  .nbrm-currency-box.layout-horizontal .nbrm-currency-label,
  .nbrm-currency-box.layout-horizontal .nbrm-currency-item {
    flex-direction: row;
    text-align: left;
  }
}
