/* Default Light Theme */
:root {
    --bg-color: #f5f5f5;
    --text-color: #222;
    --container-bg: #ffffff;
    --input-bg: #fff;
    --button-bg: #007bff;
    --button-text: #fff;
    --border-color: #ccc;
  }
  
  /* Dark Theme */
  [data-theme="dark"] {
    --bg-color: #1e1e1e;
    --text-color: #f5f5f5;
    --container-bg: #2b2b2b;
    --input-bg: #333;
    --button-bg: #0a84ff;
    --button-text: #fff;
    --border-color: #444;
  }
  
  /* Global Styles */
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    transition: all 0.3s ease-in-out;
  }
  
  /* Main Container */
  #container {
    background: var(--container-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
  }
  
  /* Inputs & Selects */
  select, input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: var(--input-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease-in-out;
  }
  
  /* Buttons */
  button {
    width: 100%;
    padding: 10px;
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  /* Theme Toggle Button */
  #theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  #swap-and-rate-div{
    display: flex ;
    justify-content: space-between;
 
  }
  #swap-and-rate-div #swap{
    width: 140px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
  }