 .flipp-head {
     
 }
     .flip-cou {
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;
            overflow-x:auto;
            justify-content:center;
            margin-bottom: 15px;
        }
        
         .flip-cou img {
            height:50px;
            width:50px;
            border-radius:50%;
        }
        
        .flex-box {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .flipp-form {
            border-radius: 12px;
            width:90%;
            max-width:750px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 15px;
            background-color: var(--card-bg);
            color: var(--light-text);
        }
        
        .flipp-sec {
            background: var(--card-bg); padding: 8px 10px; border:1px solid var(--simple-color); color:var(--light-text); border-radius: 8px; overflow: hidden; width:90%; max-width:600px;
        }
        
        .flipp-las {
          white-space: nowrap; animation: scroll-left 20s linear infinite; font-size: 13px; color:var(light-text);
        }

        .network-options {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            overflow-x:auto;
            justify-content:start;
            margin-bottom: 15px;
        }
        
         .network-options img {
            height:40px;
            width:40px;
            border-radius:50%;
        }

        .network-option {
            padding: 10px;
            border-radius: 6px;
            display:flex;
            white-space:nowrap;
            align-items:center;
            gap:3px;
            background-color: var(--card-bg);
            color: var(--light-text);
            border:1px solid  var(--simple-color);
            cursor: pointer;
            font-size: 13px;
            font-weight: bold;
            transition: 0.3s ease;
        }

        .network-option.active {
            color: var(--branding);
            border: 3px solid var(--branding);
            padding:5px;
        }

        #amountInput {
            margin-bottom: 15px;
            background-color: #333;
            border: none;
            border-radius: 6px;
            padding: 10px;
            color: white;
            width: 100%;
        }

        #output {
            font-size: 19px;
            font-weight: bold;
            text-align:center;
            margin:10px 0 0 10px;
            color: var(--branding);
        }
        
        @keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
        