/* Floating Button Setting */
    .floating-div{
        width: 100%;
        position: sticky;
        height: 100px;
        bottom: 0px;
        padding-top: 8px;
        text-align: center;
        z-index: 2;
        background: linear-gradient(
        180deg, rgba(255,255,255,0) 0%,
         rgba(255,255,255,0.1) 20%, 
         rgba(255,255,255,0.95) 70%, 
         rgba(255,255,255,1) 78%)
    }
    .floating-button{
        white-space: nowrap;
        width: 300px;
        padding: 10px 0!important;
        font-size: 17px!important;
        background: #0359a3;
        font-weight: 400;
        display: inline-block;
        color: #fff !important;
        border-radius: 5px;
        letter-spacing: 1px;
        margin: 25px auto;
    }
    @media screen and (max-width: 550px) {
      .floating-button{
        width: 85%;
      }					
    }

/* Divider */
	hr{
		width: 70%;
		height: 1px;
		background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(255,255,255,0) 100%);
		margin: 25px auto !important;
	}

/* Image Setting */
	.figure_pc, .figure_resp,.figure_bnr{
		margin: 20px 5px;
	}
	.figure_resp img,  .figure_resp video{
        max-width: 330px !important;
    }
	.figure_pc img{
		max-width: 700px !important;
		-webkit-backface-visibility: hidden;
	}
	@media screen and (max-width: 725px) {
		.figure_pc img{
			width: 100% !important;
		}
    }

/* Scroll adjuster for #id */
    [id] { /* Applies to all elements with an ID */
        scroll-margin-top: 75px; /* Adjust this value to match your sticky banner height */
    }
    html{
        scroll-behavior: smooth;
    }

/* New Comparison Table CSS */
    .table-responsive .comparison-table a{
        color: black;
        text-decoration: none;
        font-weight: 700;
    }

    /* Ensure table responsiveness */
    .table-responsive {
        overflow-x: auto;
        width: 100%;
    }

    /* Base table styling */
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        text-align: left !important;
    }

    /* Table Borders & Padding */
    .comparison-table th, 
    .comparison-table td {
        border: 1px solid #ddd;
        padding: 10px;
    }

    /* Header Styling */
    .comparison-table th {
        background-color: #f4f4f4;
        font-weight: bold;
        text-align: left;
    }
    /* Hide Row */
    .row-hidden {
          display: none !important;
    }
    .comparison_xbtn {
      background: #fff !important;
      border: 1px solid #0359a3;
      color: #0359a3;
      cursor: pointer;
      border-radius: 4px;
      padding: 10px 40px;
      font-size: 18px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    /* Mobile-Optimized Table Layout (Stacked Version) */
    @media (max-width: 768px) {
        .comparison-table thead {
            display: none; /* Hide table headers */
        }

        .comparison-table tbody,
        .comparison-table tr,
        .comparison-table td {
            display: block;
            width: 100%;
        }

        .comparison-table tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            padding: 12px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }

        .comparison-table td {
            border: none;
            text-align: left;
            padding: 10px;
            font-size: 14px;
            display: block; /* Stack each label and value */
        }

        .comparison-table td::before {
            content: attr(data-label);
            font-weight: bold;
            display: block; /* Make label appear on top */
            margin-bottom: 5px;
        }
        .row-hidden {
          display: none !important;
        }
    }

    /* TikTok Remove Blockquote */
    .tiktok-embed::before,
    .tiktok-embed::after {
        content: none !important;
        display: none !important;
    }

/* Icon Size + Centering for below 500px */
    .figure_icon img{
        max-width: 150px !important;
        border-radius: 15px;
    }

    @media screen and (max-width: 500px) {
        .container .inner .description .figure_icon img{
            margin: 15px auto; 
        }
    }

/* Image Size for figure class */
	.figure, .figure_pc, .figure_resp,.figure_bnr{
		margin: 20px 5px;
	}
	.figure_resp img{
        max-width: 300px !important;
    }