    #copyIcon {
        cursor: pointer;
        margin-top: 10px;
    }

    #copyNotification {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
    }
  body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .container-fluid, .navbar, .row {
            width: 100%;
            padding-right: 0;
            padding-left: 0;
            margin-right: 0;
            margin-left: 0;
        }

        .nav-link.active {
            background-color: #007bff;
            color: white;
        }

        .nav-link.active i {
            color: white;
        }

        .nav-item {
            margin-bottom: 5px;
        }

        .support-block-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            background-color: white;
            border-radius: 5px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .support-icons-center {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 10px;
        }

        .support-icon-right {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
            margin-top: 10px;
        }

        .support-icon-right span {
            font-size: 20px;
            font-weight: bold;
            margin-left: 5px;
        }

        .side-menu {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: 1001;
            background-color: black;
            overflow-y: auto;
            transition: width 0.3s ease;
            opacity: 1;
        }

        .show-side-menu .side-menu {
            display: block;
            width: 100%;
            margin-left: 0;
        }

        .main-content {
            padding-left: 0;
            max-width: calc(100% - 180px);
            margin-left: auto;
            transition: margin-left 0.3s ease;
        }

        footer {
            padding-left: 16%;
            padding-right: 15%;
        }

        .nav.flex-column .nav-item .btn {
            width: 100%;
            text-align: left;
        }
         .btn-green {
                    background-color: #28a745;
                    color: white;
                    border-radius: 5px;
                    border: none;
                    padding: 10px 20px;
                    cursor: pointer;
                }

                .btn-green:hover {
                    background-color: #218838;
                    color: white;

        #copyIcon {
            cursor: pointer;
        }

        #copyNotification {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
        }

         .align-left {
                    text-align: left;
                }