
        /* General Styling */
        body {
            transition: background 0.5s ease, color 0.5s ease;
                font-family: "Poppins", sans-serif;
        }

        /* Theme Preview Box */
        .theme-preview {
            background: var(--theme-bg);
            color: var(--theme-text);
            transition: background 0.5s ease, color 0.5s ease;
        }

        /* Theme Buttons */
        .theme-button {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
        }

        .theme-button:hover {
            transform: scale(1.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }

        /* Theme Colors */


        .fahim-1 {
            --theme-bg: linear-gradient(90deg, rgba(16,112,75,1) 15%, rgba(96,204,156,1) 68%);
            --theme-text: white;
            --theme-font-text: #48b083;
        }
        .fahim-2 {
            --theme-bg: linear-gradient(90deg, #1e293b, #565A5C);
            --theme-text: white;
            --theme-font-text: #3e454e;
        }
        .fahim-3 {
            --theme-bg: linear-gradient(90deg, rgba(79,48,142,1) 46%, rgba(114,88,164,1) 93%);
            --theme-text: white;
            --theme-font-text: #533490;
        }
        .fahim-4 {
            --theme-bg: linear-gradient(90deg, rgba(255, 223, 0, 1) 0%, rgba(255, 165, 0, 1) 35%, rgba(255, 69, 0, 1) 100%);
            --theme-text: black;
            --theme-font-text: #ff6d00;
        }
.fahim-5 {
    --theme-bg: linear-gradient(90deg, #ff416c, #ff4b2b);
    --theme-text: white;
    --theme-font-text: #d72638;
}

.fahim-6 {
    --theme-bg: linear-gradient(90deg, #00c6ff, #0072ff);
    --theme-text: white;
    --theme-font-text: #005ecb;
}

.fahim-7 {
    --theme-bg: linear-gradient(90deg, #6a11cb, #2575fc);
    --theme-text: white;
    --theme-font-text: #4b0082;
}

.fahim-8 {
    --theme-bg: linear-gradient(90deg, #f12711, #f5af19);
    --theme-text: white;
    --theme-font-text: #d76d00;
}

.fahim-9 {
    --theme-bg: linear-gradient(90deg, #12c2e9, #c471ed, #f64f59);
    --theme-text: white;
    --theme-font-text: #9b10cf;
}

.fahim-10 {
    --theme-bg: linear-gradient(90deg, #11998e, #38ef7d);
    --theme-text: white;
    --theme-font-text: #0d8a60;
}

a {
    color: #4cc85a;
    outline: 0 !important;
    text-decoration: none;
  }
  
  a:hover, a:active, a:focus {
    outline: 0 !important;
    color: #4cc85a;
    text-decoration: none;
  }
  
  ::-webkit-scrollbar {
    width: 0;
  }
  .appHeader {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: env(safe-area-inset-top);
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--theme-bg);
    color: var(--theme-text);
    border-bottom: 1px solid #DCDCE9;
  }
  
  .appHeader:before {
    content: '';
    height: env(safe-area-inset-top);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
  }
  
  .appHeader.no-border {
    border: 0;
    box-shadow: none;
  }
  
  .appHeader.transparent {
    background: transparent;
  }
  
  .appHeader.transparent:before {
    background: #EDEDF5;
  }
  
  .appHeader .left,
  .appHeader .right {
    height: 56px;
    display: flex;
    align-items: center;
    position: absolute;
  }
  
  .appHeader .left .icon,
  .appHeader .left ion-icon,
  .appHeader .right .icon,
  .appHeader .right ion-icon {
    font-size: 26px;
  }
  
  .appHeader .left .headerButton,
  .appHeader .right .headerButton {
    min-width: 36px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #4cc85a;
    position: relative;
  }
  
  .appHeader .left .headerButton .btn,
  .appHeader .right .headerButton .btn {
    font-size: 16px;
    height: 32px;
    padding: 0px 14px;
  }
  
  .appHeader .left .headerButton:active,
  .appHeader .right .headerButton:active {
    opacity: .6;
  }
  
  .appHeader .left {
    left: 10px;
    top: 0;
  }
  
  .appHeader .right {
    right: 10px;
    top: 0;
  }
  
  .appHeader .pageTitle {
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    margin-left: 50px;
    margin-top: -10px;
  }
  
  .appHeader .pageTitle .logo {
    max-height: 24px;
  }
  
  .appHeader.text-light {
    color: #FFF;
  }
  
  .appHeader.text-light .headerButton {
    color: #FFF;
  }
  
  .appHeader.bg-primary, .appHeader.bg-secondary, .appHeader.bg-success, .appHeader.bg-warning, .appHeader.bg-danger, .appHeader.bg-info, .appHeader.bg-light, .appHeader.bg-dark {
    border: 0;
  }
  
  .appHeader.bg-primary:before {
    background: #4cc85a !important;
  }
  
  .appHeader.bg-secondary:before {
    background: #8494A8 !important;
  }
  
  .appHeader.bg-success:before {
    background: #1DCC70 !important;
  }
  
  .appHeader.bg-warning:before {
    background: #FFB400 !important;
  }
  
  .appHeader.bg-danger:before {
    background: #FF396F !important;
  }
  
  .appHeader.bg-info:before {
    background: #05D0A4 !important;
  }
  
  .appHeader.bg-dark:before {
    background: #222 !important;
  }

        /* Additional CSS styles */
        #tap {
            background: #fff;
            color: #000;
            padding: 0 10px;
            border-radius: 20px;
            cursor: pointer; /* Add cursor pointer for better UX */
        }

        #bal {
            display: none;
            background: #fff;
            color: #000;
            padding: 0 10px;
            border-radius: 20px;
            margin-left: -20px;
            cursor: pointer; /* Add cursor pointer for better UX */
        }
