@import url('/assets/font/Mont/link.css');
@import url('/assets/font/JetBrains-Mono/link.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mont';
    color: white;
    user-select: none;
}

  body {
    margin: 0;
    background-color: #1e1f23;
    color: #fff;
  }
  
  nav {
    background-color: #1a1b1f;
    padding: 20px;
    text-align: center;
    font-size: 24px;
  }
  
  .wrapper {
    background-color: #26292f;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 12px;
  }
  
  .input-box {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background-color: #34373e;
    color: #fff;
    font-family: 'JetBrains-Mono';
  }
  
  .select-menu {
    position: relative;
    margin-bottom: 20px;
  }
  
  .select-btn {
    background-color: #34373e;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .sBtn-text {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .select-btn img {
    width: 25px;
    height: 25px;
  }
  
  .options {
    position: absolute;
    background-color: #34373e;
    width: 100%;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 10;
  }

  .options li img {
    width: 24px;
    height: 24px;
}
  
  .select-menu.active .options {
    display: block;
  }
  
  .option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .option:hover {
    background-color: #4a4e57;
  }
  
  .exchange-btn {
    background-color: #1bd96a;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .exchange-btn:hover {
    background-color: #17c15c;
  }
  

  .arrow-icon {
    text-align: center;
    font-size: 28px;
    margin: 10px 0;
  }
  
  .locked-fiat {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ccc;
    font-style: italic;
  }
  