.currency-switcher {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .currency-switcher button {
      padding: 10px 15px;
      border: none;
      cursor: pointer;
      display: block;
      font-weight: bold;
      width: 80px;
      transition: background-color 0.3s, transform 0.2s;
    }

    .usd {
      background-color: black;
      color: white;
    }

    .bdt {
      background-color: crimson;
      color: white;
    }
    .inr {
      background-color: rgb(19, 106, 86);
      color: white;
    }

    .currency-switcher button.active {
      transform: scale(1.1);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .rate {
      font-size: 1.8em;
    }
    .amount-left{
      opacity: 1;
      transition: opacity 0.5s ease;
    }
    .fade-out {
      opacity: 0;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    
    .trust-badge {
            display: inline-flex;
            align-items: center;
            background: #f5f5f5;
            padding: 8px 15px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-decoration: none; /* Remove default link underline */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .trust-badge:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .trust-stars {
            color: #00B67A; /* TrustPilot Green */
            font-size: 16px;
            margin-right: 8px;
        }
        
        .trust-text {
            font-size: 14px;
            color: #333;
            font-weight: 600;
        }
        
        .trust-text span {
            color: #00B67A;
            font-weight: 700;
        }