
        /* Basic Table Styling */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: #1e1e1e;
            color: #ffffff;
        }

        th, td {
            padding: 12px;
            border: 1px solid #2e2e2e;
            text-align: left;
        }

        th {
            background-color: #2b2b2b;
            color: #00acc1; /* Light green text color for headers */
        }

        td {
            color: #e6e6e6;
        }

        /* Table row hover effect */
        tr:hover {
            background-color: #333333;
        }

        /* Responsive table */
        @media (max-width: 600px) {
            .table-responsive {
                overflow-x: auto;
            }
            table {
                width: 100%;
                border: 0;
            }
            table thead {
                display: none;
            }
            table tr {
                margin-bottom: 10px;
                display: block;
                border-bottom: 2px solid #2e2e2e;
            }
            table td {
                display: block;
                text-align: right;
                font-size: 13px;
                border-bottom: 1px dotted #2e2e2e;
                position: relative;
                padding-left: 50%;
            }
            table td::before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                width: 45%;
                padding-left: 15px;
                font-weight: bold;
                text-align: left;
                color: #00acc1;
            }
        }

        /* Dark Theme for Blockquote */
        blockquote {
            background-color: #111; /* Dark background */
            color: #fff; /* White text */
            padding: 15px;
            border-left: 5px solid #00acc1; /* Green border on the left */
            margin: 20px 0;
            font-style: italic;
        }
        @import url('inline-font1_1.900&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
    