    /* Section Titles */
    .category strong,
    .keyword strong,
    .Interoperability strong {
        font-size: 12pt;
        color: #333;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    /* Add icons before Categories & Keywords */
    .category strong::before {
        content: "📂";
        /* Folder icon */
        margin-right: 8px;
        font-size: 18px;
    }

    .keyword strong::before {
        content: "🔑";
        /* Key icon */
        margin-right: 8px;
        font-size: 18px;
    }


    .Interoperability strong::before {
        content: "🏷️";
        /* Key icon */
        margin-right: 8px;
        font-size: 18px;
    }

    /* Category Badges */
    .category a {
        display: inline-block;
        background: linear-gradient(135deg, #ff7b54, #ff5733);
        color: white;
        padding: 7px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: bold;
        margin: 3px 0;
        text-align: center;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    }

    /* Category Hover Effect */
    .category a:hover {
        background: linear-gradient(135deg, #ff5733, #ff2e00);
        transform: scale(1.05);
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    }

    /* Keyword Badges */
    #keyword-tag {
        display: inline-block;
        background: linear-gradient(135deg, #4a90e2, #357ABD);
        color: white;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 13px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
    }

    #update-keywords {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 6px;
    }




    /* Keyword Hover Effect */
    .keyword a:hover {
        background: linear-gradient(135deg, #357ABD, #285A8F);
        transform: scale(1.05);
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Dot separator between keywords */
    .keyword a:not(:last-child)::after {
        content: "  ";
        color: #555;
        font-weight: bold;
        margin-left: 6px;
    }

    /* Position container */
    .tooltip-container {
        display: inline-block;
        position: relative;
    }

    /* Lock Icon */
    .lock-icon {
        font-size: 18px;
        cursor: pointer;
        color: #555;
    }

    /* Tooltip Box */
    .tooltip {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        background-color: #333;
        color: white;
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 5px;
        white-space: nowrap;
        bottom: 100%;
        /* Position above the icon */
        left: 50%;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    /* Tooltip Arrow */
    .tooltip::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

    /* Show Tooltip on Hover */
    .tooltip-container:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .info-row_s {
        /* display: flex; */
        align-items: center;
        gap: 10px;
        white-space: nowrap;
    }

    .rating-label {
        font-size: 16px;
        font-weight: bold;
    }

    .dataset_rate {
        display: inline-block;
    }

    .stars {
        position: relative;
        display: inline-block;
        font-size: 23px;
        line-height: 1;
    }

    .stars-empty {
        color: #ddd;
    }

    .stars-full {
        color: gold;
        position: absolute;
        top: 0;
        left: 0;
        white-space: nowrap;
        overflow: hidden;
    }

    .version {
        padding: 10px;
        background: #38CBAC;
        color: #2D4790;
        border-radius: 5px;
        font-size: 11pt;
        cursor: pointer;
        border: solid 1px #2D4790;
    }

    .oldversion {
        padding: 10px;
        background: yellow;
        color: #2D4790;
        border-radius: 5px;
        font-size: 11pt;
        cursor: pointer;
        border: solid 1px #ccc;

    }

    .popup {
        display: none;
        position: absolute;
        top: 105%;
        left: 0;
        background: rgb(226, 219, 219);
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 999;
        font-size: 10pt;
    }

    .popup a {
        display: block;
        text-decoration: none;
        color: #222;
        padding: 4px 0;
    }

    .popup a:hover {
        color: #284fb1;
        text-decoration: underline;
    }

    .warning_original {
        border-left: 4px solid #f59e0b;
        background-color: #fff8e1;
        padding: 16px;
        margin-bottom: 25px;
        border-radius: 6px;
        font-size: 14px;
    }

    .questions_count {
        position: relative;
        bottom: 2px;
        left: 2px;

    }

    .description-box {
        font-size: 1rem;
        color: #2c3e50;
        background-color: #f9f9fb;
        border-left: 3px solid #4CAF50;
        padding: 1rem 1rem;
        max-width: 800px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        text-align: justify;
        /* Justify alignment */
    }


    body.modal-open {
        overflow: hidden;
    }


    .Interoperability a {
        display: inline-block;
        background: linear-gradient(135deg, #ea7f0d, #dda610);
        color: white;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 13px;
        font-weight: bold;
        margin: 3px 0;
        text-decoration: none;
        box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .Interoperability a:hover {
        background: linear-gradient(135deg, #f27f04, #ed8e08);
        transform: scale(1.05);
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    }






    .profile-wrapper {
        position: relative;
        display: inline-block;
        margin-left: 10px;
    }


    /* Status dot positioned inside bottom-right of image */
    .profile-wrapper .status-dot {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
        /* Makes it cleaner */
    }

    /* Online effect stays the same */
    .status-dot.online {
        background-color: #22c55e;
        box-shadow: 0 0 8px 4px rgba(34, 197, 94, 0.6);
        animation: pulse 1.6s infinite ease-in-out;
    }

    /* Offline */
    .status-dot.offline {
        background-color: #9ca3af;
    }