    <style>
        body {
            font-family: Arial, sans-serif;
            padding: 20px;
            background-color: #f0f0f0;
        }

        .comment-icon {
            position: relative;
            width: 70px;
            height: 25px;
            background-color: #F6D55C;
            border: 2px solid #F6D55C;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /*margin: 10px;*/
            margin-top:0px; margin-right:0px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .comment-icon::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 8px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #F6D55C;
        }

        .comment-icon::before {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 9px;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #fff;
        }

        .comment-icon:hover {
            background-color: #e8f4f8;
            border-color: #F6D55C;
        }

        .comment-icon:hover::after {
            border-top-color: #F6D55C;
        }

        .comment-icon:hover::before {
            border-top-color: #e8f4f8;
        }

        .comment-text {
            font-size: 14px;
  			font-family: CCLegendaryLegerdemain-Reg;
            /*color: #333;*/
            color: #555555;
            text-align: center;
            line-height: 1;
        }

        /* Different sizes */
        .small {
            width: 30px;
            height: 22px;
        }

        .small .comment-text {
            font-size: 8px;
        }

        .medium {
            width: 50px;
            height: 38px;
        }

        .medium .comment-text {
            font-size: 12px;
        }

        .large {
            width: 80px;
            height: 60px;
        }

        .large .comment-text {
            font-size: 16px;
        }

        .extra-large {
            width: 120px;
            height: 80px;
        }

        .extra-large .comment-text {
            font-size: 20px;
        }

        /* Different colors */
        .blue {
            background-color: #2196F3;
            border-color: #1976D2;
        }

        .blue .comment-text {
            color: white;
        }

        .blue::after {
            border-top-color: #1976D2;
        }

        .blue::before {
            border-top-color: #2196F3;
        }

        .green {
            background-color: #4CAF50;
            border-color: #388E3C;
        }

        .green .comment-text {
            color: white;
        }

        .green::after {
            border-top-color: #388E3C;
        }

        .green::before {
            border-top-color: #4CAF50;
        }

        .demo-section {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .demo-section h3 {
            margin-top: 0;
            color: #333;
        }

        .icon-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
    </style>