.currency-picker { 
  position: relative; 
  width: 100%;
} 
.currency-select { 
  width: 100%; 
  min-height: 50px; 
  padding: 13px 15px; 
  border-radius: 12px; 
  border: 1px solid rgba(255,255,255,0.15); 
  background: rgba(0,0,0,0.25); 
  color: white; 
  font-size: 15px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 10px; 
  text-align: left; 
  cursor: pointer; 
  outline: none; 
} 
.currency-select:hover { 
  border-color: #00d4ff; 
} 
.currency-select:focus { 
  border-color: #00d4ff; 
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1); 
} 
.arrow { 
  color: #00d4ff; 
  font-size: 12px; 
  transition: 0.2s; 
} 
.currency-picker.open .arrow { 
  transform: rotate(180deg); 
} 
.currency-menu { 
  position: absolute; 
  top: calc(100% + 8px); 
  left: 0; width: 100%; 
  background: #101c2d; 
  border: 1px solid rgba(255,255,255,0.15); 
  border-radius: 14px; 
  padding: 10px; 
  z-index: 1000; 
  display: none; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.45); 
} 
.currency-picker.open .currency-menu { 
  display: block; 
} 
.currency-search { 
  width: 100%; 
  padding: 12px; 
  border-radius: 9px; 
  border: 1px solid rgba(255,255,255,0.15); 
  background: rgba(255,255,255,0.07); 
  color: black; 
  outline: none; 
  font-size: 14px; 
  margin-bottom: 8px; 
} .currency-search::placeholder { 
  color: #8290a3; 
} 
.currency-search:focus { 
  border-color: #00d4ff; 
} 
.currency-list { 
  max-height: 240px; 
  overflow-y: auto; 
} 
.currency-item { 
  padding: 11px 12px; 
  border-radius: 8px; 
  cursor: pointer; 
  color: #dce5ef; 
  font-size: 14px; 
  transition: 0.15s; 
} 
.currency-item:hover { 
  background: rgba(0,212,255,0.15); 
  color: #00d4ff; 
} 
.no-results { 
  padding: 15px; 
  text-align: center; 
  color: #8290a3; 
  font-size: 13px; 
} 
.currency-list::-webkit-scrollbar { 
  width: 5px; 
} 
.currency-list::-webkit-scrollbar-thumb { 
  background: #00d4ff; 
  border-radius: 10px; 
} 
@media (max-width: 600px) { 
  .currency-menu { 
    position: absolute; 
    max-height: 300px; 
  } 
  .currency-list { 
    max-height: 220px; 
    } 
  }

.currency-converter {
  gap: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.currency-converter input {
  width: 100%;
}

.currency-converter h1,
.currency-result h2 {
  text-align: center;
  margin-bottom: 8px;
}

.currency-converter .currency-box {
  width: 100%;
}

.currency-converter .currency-select {
  background: rgba(0, 0, 0, 0.25);
}

.currency-item {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
}

.currency-item.active {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.swap-button {
  align-self: center;
  border: 0;
  border-radius: 50%;
  padding: 8px 14px;
  font-size: 1.3rem;
  cursor: pointer;
}

.currency-converter #convertButton {
  align-self: center;
  margin: 12px 0;
}

.currency-result {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.currency-result p {
  margin: 5px 0;
}

#resultAmount {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.status.error {
  color: #8b0000;
  font-weight: 700;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .currency-converter {
    width: calc(100% - 24px);
    margin: 20px 12px;
  }

  .currency-converter #convertButton {
    margin-left: auto;
    margin-right: auto;
  }
}