﻿body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #FDFBFB;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, ul, li {
    margin: 0;
    padding: 0;
}

.scroll::-webkit-scrollbar-track {
    border: 1px solid #e0e0e0;
    padding: 2px 0;
    background-color: #e0e0e0;
    border-radius: 10px;
}

.scroll::-webkit-scrollbar {
    width: 7px;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c5c5c5;
    border: 1px solid #e0e0e0;
}

.side-menu {
    width: 260px;
    height: 100vh;
    transition: width .5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
    border-right: 1px solid #d3d3d3;
}

.toggleButton {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
    right: -13px;
    top: 50px;
    cursor: pointer;
    z-index: 2;
}

    .toggleButton svg {
        height: 20px;
    }

        .toggleButton svg path {
            stroke: #fff;
        }

.side-menu.collapsed span.toggleButton {
    transform: inherit !important;
}

.logo {
    padding: 8px 15px 2px;
    background-color: #fff;
    height: 55px;
    text-align: left;
    line-height: 55px;
    overflow: hidden;
    font-size: 30px;
    font-weight: 600;
}

    .logo img {
        max-width: 130px;
    }

    .logo span i {
        font-style: normal;
        /*color: #D73E48;*/
    }

    .logo span {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        display: none;
    }

.side-menu.collapsed .logo span {
    display: block;
}

.side-menu.collapsed {
    width: 57px;
}

    .side-menu.collapsed .navigation li a span, .side-menu.collapsed .logOut a span {
        display: none;
    }

.navigation {
    margin: 0;
    padding: 0;
    list-style: none;
    height: calc(100vh - 115px);
    overflow: auto;
}

    .navigation li {
        position: relative;
    }

        .navigation li a.nav-link.active {
            color: #ff8201;
            background-color: #f2faff;
            font-weight: 600;
        }

            .navigation li a.nav-link.active::before {
                content: "";
                position: absolute;
                width: 3px;
                height: 100%;
                left: 0;
                top: 0;
                background-color: #ff8201;
            }

        .navigation li a svg, .logOut a svg {
            margin-top: -2px;
            min-width: 16px;
        }

        .navigation li a span {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .navigation li a, .logOut a {
            text-decoration: none;
            color: #555758;
            font-size: 14px;
            font-weight: 400;
            padding: 10px 20px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 30px;
        }

.logOut a {
    min-height: 20px !important;
    padding: 7px 20px !important;
    border-radius: 6px;
    background-color: #ff8201;
    color: #fff !important;
}

.side-menu.collapsed .logOut {
    padding: 7px 10px 7px 7px;
}

    .side-menu.collapsed .logOut a {
        padding: 7px 13px !important;
    }

.logOut {
    padding: 7px 30px 7px 20px;
}

    .logOut a svg path {
        stroke: #fff;
    }

.main-container {
    display: flex;
    align-items: flex-start;
}

.mainRightContainer {
    flex: 1;
}

.main-body-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-header {
    height: 55px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .user-header h1 {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .user-header h1 i {
            list-style: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid #ff8201;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .user-header h1 i svg {
                width: 17px;
            }

        .user-header h1 span {
            font-size: 18px;
            font-weight: 500;
            color: #ff8201;
        }

        .user-header h1 i path {
            fill: #ff8201;
        }

.user-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .user-detail span {
        width: 28px;
        height: 28px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        border: 1px solid #ff8201;
        color: #ff8201;
        font-weight: 500;
        border-radius: 50%;
    }

    .user-detail i {
        font-size: 14px;
        font-weight: 400;
        color: #ff8201;
        font-style: normal;
    }

.chat-container {
    height: calc(100vh - 100px);
    margin: 0 20px 15px;
    padding: 0;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.footer {
    height: 30px;
    background-color: #333;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.chatInnerConatainer {
    display: flex;
    align-items: flex-start;
}

.lft-chat {
    flex: 1;
    position: relative;
}

.chatTypeButton {
    background: #fff;
    border-radius: 0;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, .1); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #EFEFEF;
    padding: 7px 7px 0px 15px;
}

.tabbingAaria {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chatTypeButton a.active {
    color: #6c6c6c;
    border-color: #6fc3ff;
}

.chatTypeButton a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #6c6c6c;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    border-left: none;
    position: relative;
    border-bottom: 1px solid #fff;
}

.timeSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.leftRightDrag {
    width: 25px;
    height: 27px;
    background: #666;
    border-radius: 6px 0px 0px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: -6px;
    margin-top: -7px;
}

    .leftRightDrag svg {
        height: 22px;
    }

        .leftRightDrag svg path {
            stroke: #fff;
        }

.chatAreaContainer {
    overflow: auto;
    height: calc(100vh - 160px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 15px;
}

.chatPushAria {
    padding: 7px 10px 15px 0;
    height: calc(100vh - 252px);
    position: relative;
    overflow: auto;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

    .welcome-content .orb {
        width: 85px;
        height: 85px;
        background: radial-gradient(circle at 30% 30%, #fbaf69, #ff7a00);
        border-radius: 50%;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        animation: float 3s ease-in-out infinite;
        margin-bottom: 25px;
    }

    .welcome-content .title {
        font-size: 28px;
        font-weight: 600;
        text-align: center;
    }

    .welcome-content .subtitle {
        font-size: 26px;
        margin-top: 5px;
        text-align: center;
    }

        .welcome-content .subtitle span {
            color: #ff7a00;
            font-weight: 600;
        }

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.chatBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 7px 15px;
    background-color: #f9f9f9;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    gap: 10px;
    width: 80%;
    margin: 0 auto;
}

.textAria {
    flex: 3;
    display: flex;
    align-items: center;
    width: 100%;
}

    .textAria textarea {
        background-color: transparent;
        width: 100%;
        border: none;
        resize: none;
        font-size: 14px;
        height: 38px;
        color: #666;
        padding-left: 0;
        padding-right: 0;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

        .textAria textarea:focus {
            outline: none;
        }

.searchSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.searchCrt {
    padding: 0;
    color: #333;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 5px;
}

.sendUpload {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sendUpload button {
        background-color: #565656;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        margin-right: 2px;
    }


.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    position: absolute;
    top: -40px; /* position tooltip above */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

    /* Arrow */
    .tooltip-text::after {
        content: "";
        position: absolute;
        bottom: -6px; /* arrow goes below tooltip */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #000;
    }

.tooltip-container:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}


/*Dropdown CSS*/

.dropdown {
    position: relative;
    min-width: 150px;
    max-width: 250px;
    border-radius: 30px;
    height: 28px;
}

.dropdown__selected {
    padding: 7px 30px 7px 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    color: #999;
    position: relative;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .dropdown__selected svg {
        position: absolute;
        width: 19px;
        right: 8px;
    }

.dropdown__options {
    list-style: none;
    padding: 5px 0;
    margin: 5px 0;
    border: 1px solid #ccc;
    background: #fff;
    position: absolute;
    min-width: 160px;
    max-height: 150px;
    overflow-y: auto;
    top: 32px;
    z-index: 999;
    border-radius: 6px;
    max-width: 250px;
    display: none;
}

.dropdown__option {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

    .dropdown__option:hover {
        background: #f0f0f0;
    }

.promptDropdown .dropdown {
    max-width: 100%;
}

.chatDropdown .dropdown__selected {
    border-radius: 30px;
    padding: 5px 30px 5px 10px;
    color: #333;
}

.chatDropdown .dropdown__options {
    top: inherit;
    bottom: 34px;
}

.chatDropdown.radio .dropdown__options::after {
    content: "";
    position: absolute;
    bottom: -6px; /* arrow goes below tooltip */
    left: 12%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #b5b3b3;
    display: none;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

    .dropdown-header span {
        cursor: pointer;
        font-weight: 500;
    }

    .dropdown-header .select-all {
        color: #007bff;
    }

    .dropdown-header .clear-all {
        color: #dc3545;
    }

.dropdown-option {
    display: flex;
    padding: 8px 10px;
    cursor: pointer;
    align-items: center;
    font-size: 12px;
    gap: 5px;
    white-space: nowrap;
    font-weight: 600;
}

    .dropdown-option input[type=checkbox] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        margin: 0px;
    }

.dropdown__selected span {
    width: 20px;
    height: 20px;
    display: flex;
    position: absolute;
    right: 28px;
    top: 5px;
    color: #333;
    border-radius: 50%;
    font-size: 14px;
    justify-content: center;
    line-height: 20px;
}

.chatDropdown.open .dropdown__options {
    display: block;
}

.right-ref {
    width: 0px;
    border-left: 1px solid #EFEFEF;
    height: calc(100vh - 48px);
    overflow: hidden;
    transition: width .5s;
}

    .right-ref.open {
        width: 26%;
    }

.leftRightDrag.toOpen svg {
    transform: inherit !important;
}

.rightHeader {
    overflow: hidden;
    border-bottom: 1px solid #EFEFEF;
    padding: 12px 15px 9px;
    font-size: 15px;
    color: #ff8201;
    font-weight: 600;
    white-space: nowrap;
}

.tab-pane {
    display: none;
    overflow: auto;
    height: calc(100vh - 100px);
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 15px;
}

    .tab-pane.active {
        display: flex;
    }


/*New Css For New Design Implement*/

.top-bar {
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

    .top-bar .title {
        color: #ff6a00;
        font-size: 16px;
        font-weight: 600;
    }

    .top-bar .menu-wrapper {
        position: relative;
    }

    .top-bar .menu-btn {
        width: 28px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        border: 1px solid #ADADAD;
        border-radius: 4px;
        padding: 5px 5px;
        background: #fff;
    }



        .top-bar .menu-btn span {
            display: block;
            height: 2px;
            width: 100%;
            background: #9e9e9e;
            margin-bottom: 4px;
            border-radius: 2px;
        }

            .top-bar .menu-btn span:last-child {
                margin-bottom: 0;
            }

    /* Dropdown */
    .top-bar .dropdown-top-bar {
        position: absolute;
        top: 35px;
        right: 0;
        width: 160px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        display: none;
        padding: 6px;
        z-index: 999;
    }

        .top-bar .dropdown-top-bar::before {
            content: '';
            position: absolute;
            top: -5px;
            right: 9px;
            width: 10px;
            height: 10px;
            background: #fff;
            transform: rotate(45deg);
            z-index: -1;
        }

        .top-bar .dropdown-top-bar.show {
            display: block;
        }

    .top-bar .dropdown-item {
        padding: 10px 14px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        border-radius: 4px;
        display: block;
        text-decoration: none;
    }

        .top-bar .dropdown-item:hover {
            background: #f5f5f5;
        }

        .top-bar .dropdown-item.active {
            background: #f5f5f5;
            color: #ff6a00;
            font-weight: 600;
        }

.main-ui-container {
    width: 100%;
    box-sizing: border-box;
}

    .main-ui-container .lp-score-container {
        height: calc(100vh - 48px);
    }




.chip-wrapper {
    width: 80%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.chip-textarea {
    width: 100%;
    height: 80px;
    padding: 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

.chips-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    opacity: 0;
    pointer-events: none;
}

.chip {
    padding: 6px 14px;
    border-radius: 16px;
    background: #f1f1f1;
    font-size: 13px;
    transform: translateY(10px);
    opacity: 0;
    cursor: pointer;
}

/* Active state */
.chips-container.show {
    opacity: 1;
    pointer-events: auto;
}

    .chips-container.show .chip {
        animation: chipFade 0.4s ease forwards;
    }

        .chips-container.show .chip:nth-child(1) {
            animation-delay: 0.05s;
        }

        .chips-container.show .chip:nth-child(2) {
            animation-delay: 0.1s;
        }

        .chips-container.show .chip:nth-child(3) {
            animation-delay: 0.15s;
        }

        .chips-container.show .chip:nth-child(4) {
            animation-delay: 0.2s;
        }

        .chips-container.show .chip:nth-child(5) {
            animation-delay: 0.25s;
        }

@keyframes chipFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/*Chat Realeted CSS*/
.responseContainer {
    position: relative;
    /*    background-color: #fff;*/
    padding: 10px;
    /*    border: 1px solid #f1f1f1;*/
    border-radius: 10px;
    z-index: 99;
    width: 80%;
    margin: 0 auto;
}

.chatLeft {
    display: flex;
    gap: 10px;
}

.chatIcon span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatLeft .chatContent {
    position: relative;
    padding: 7px 0;
    max-width: 100%;
    width: 100%;
}

    .chatLeft .chatContent audio, .chatLeft .chatContent video {
        display: none;
    }

.chatLeft .typeName {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.chatLeft .messageArea {
    margin: 0;
    background-color: #fff;
    padding: 7px 10px;
    border-radius: 0px 12px 12px 12px;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.chatLeft .chatContent span svg {
    cursor: pointer;
}

.chatLeft .chatContent .messageArea span i {
    font-size: 11px;
    font-weight: 500;
    color: #03b4d3;
    display: flex;
    align-items: center;
    font-style: normal;
    margin-top: 3px;
}

.chatLeft .chatContent span i {
    font-size: 10px;
    font-weight: 400;
    color: #797C7B;
    display: flex;
    align-items: center;
    font-style: normal;
}

.chatRight {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-direction: row;
    text-align: right;
}

    .chatRight .chatContent {
        position: relative;
        padding: 7px 0;
        max-width: 65%;
    }

    .chatRight .typeName {
        font-size: 14px;
        font-weight: 400;
        color: #333;
    }

    .chatRight .messageArea {
        margin: 0;
        background-color: #f1f1f1;
        padding: 7px 10px;
        border-radius: 12px 0px 12px 12px;
        font-size: 14px;
        color: #333;
        font-weight: 400;
    }

    .chatRight .chatContent span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        padding: 2px;
    }

        .chatRight .chatContent span svg {
            cursor: pointer;
        }

        .chatRight .chatContent span i {
            font-size: 10px;
            font-weight: 400;
            color: #797C7B;
            display: flex;
            align-items: center;
            font-style: normal;
        }

    .chatRight .chatIcon span {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #666;
        background-color: #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.chatLeft .messageArea strong {
    font-weight: 500;
    font-size: 14px;
}

.chatLeft .messageArea ul {
    margin: 0 0 10px 20px;
    padding: 0;
    list-style: none;
}

    .chatLeft .messageArea ul li {
        font-size: 12px;
        color: #333;
        font-weight: 400;
        position: relative;
        margin-bottom: 5px;
    }

        .chatLeft .messageArea ul li b, .chatLeft .messageArea ul li strong {
            font-size: 14px;
            color: #333;
            font-weight: 600;
            margin-right: 2px;
        }

        .chatLeft .messageArea ul li::before {
            content: "*";
            position: absolute;
            left: -11px;
            top: 2px;
            color: #000;
        }

.chatLeft .messageArea table {
    border: 1px solid #999;
    border-collapse: collapse;
    width: 100%;
}

    .chatLeft .messageArea table td, .chatLeft .messageArea table th {
        padding: 5px;
        text-align: left;
    }

    .chatLeft .messageArea table tr {
        border-bottom: 1px solid #999;
    }

.chatLeft .messageArea h1, .chatLeft .messageArea h2 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.chatLeft .messageArea h3, .chatLeft .messageArea h4, .chatLeft .messageArea h5, .chatLeft .messageArea h6 {
    font-weight: 600;
    font-size: 14px;
}

.chatLeft .messageArea i {
    font-style: normal;
}

.chatLeft .messageArea br {
    height: 5px;
}

.chatLeft .messageArea a {
    font-size: 12px;
    color: #0088CC;
    text-decoration: none;
}

    .chatLeft .messageArea a:hover {
        text-decoration: underline;
    }

.chatLeft .chatContent span.timeSection {
    display: flex;
}


/*Chat Thinking Loader*/
.thinking-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 6px 0;
}

.thinking-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #666 35%, #aaa 36%, #ccc 70%);
    position: relative;
    animation: pulseDot 1.6s infinite ease-in-out;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

.thinking-text {
    font-size: 14px;
    color: #4b4b4b;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dots span {
    animation: blink 1.4s infinite both;
    font-size: 20px;
    margin-left: 2px;
}

    .dots span:nth-child(1) {
        animation-delay: 0s;
    }

    .dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.search-loader {
    width: 20px;
    aspect-ratio: 1;
    display: grid;
    color: #854f1d;
    background: radial-gradient(farthest-side, currentColor calc(100% - 6px),#0000 calc(100% - 5px) 0);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 13px),#000 calc(100% - 12px));
    border-radius: 50%;
    animation: l19 2s infinite linear;
}

    .search-loader::before,
    .search-loader::after {
        content: "";
        grid-area: 1/1;
        background: linear-gradient(currentColor 0 0) center, linear-gradient(currentColor 0 0) center;
        background-size: 80% 1px,1px 100%;
        background-repeat: no-repeat;
    }

    .search-loader::after {
        transform: rotate(45deg);
    }

@keyframes l19 {
    100% {
        transform: rotate(1turn)
    }
}



.sourceUrlContainer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.totalSearches {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
}

.sourceUrl-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 45%;
    max-width: 100%;
}

    .sourceUrl-item b {
        font-size: 14px;
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 19px;
        color: #5e5e5e;
    }

    .sourceUrl-item p {
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
    }

.sourceUrlContainer {
    margin-bottom: 15px;
}


.sourceUrl-item.animated {
    opacity: 0;
    transform: translateY(12px);
    animation: itemAppear 0.35s ease forwards;
}

@keyframes itemAppear {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sourceDetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #f5f5f5;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 12px;
    transition: all .5s;
    background-color: #f5f5f5;
}

    .sourceDetails:hover {
        background-color: #d8d8d8;
    }

    .sourceDetails.animated {
        opacity: 0;
        transform: translateY(12px);
        animation: itemAppear 0.35s ease forwards;
    }

.sectionOfContentItem.animated {
    opacity: 0;
    transform: translateY(12px);
    animation: itemAppear 0.35s ease forwards;
}

.sourceIcon {
    width: 22px;
    height: 22px;
    min-height: 22px;
    border-radius: 50%;
    overflow: hidden;
}

    .sourceIcon img {
        width: 22px;
        height: 22px;
        min-height: 22px;
    }

.sourceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}

.summarySourceDetails .sourceTitleSummary {
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.summarySourceDetails .sourceUrlSummary {
    color: #0088CC;
}

.summarySourceDetails.animated {
    opacity: 0;
    transform: translateY(12px);
    animation: itemAppear 0.35s ease forwards;
}

.sourceTitle {
    font-weight: 600;
    color: #666;
    max-width: 320px;
    min-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sourceUrl {
    color: #0088CC;
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.headingDetails {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
}

.sourceContainer {
    width: 80%;
    border: 1px solid #ccc;
    padding: 15px;
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    gap: 10px;
    margin-bottom: 15px;
}

.new-main-container {
    display: flex;
}

.link-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 7px;
}

.sectionOfContent {
    margin-bottom: 10px;
}

    .sectionOfContent h2 {
        font-size: 16px;
        font-weight: 600;
        color: #007ac1;
        margin-bottom: 5px;
    }

    .sectionOfContent p {
        font-size: 14px;
        font-weight: 400;
        color: #585858;
        margin-bottom: 10px;
        margin-top: 0;
    }

        .sectionOfContent p a img {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            min-width: 16px;
            min-height: 16px;
        }


        .sectionOfContent p a {
            font-size: 12px;
            font-weight: 400;
            color: #007ac1;
            background-color: #13343b1a;
            padding: 3px 5px 4px;
            border-radius: 4px;
            text-decoration: none;
            margin-left: 5px;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 5px;
        }

.search-box {
    margin-bottom: 10px;
}

    .search-box span {
        font-size: 12px;
        color: #2d2d2d;
        display: inline-block;
        margin-bottom: 7px;
    }

.search-box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #d2e1ff;
    border-radius: 30px;
    font-size: 12px;
    color: #2d2d2d;
    font-weight: 500;
    opacity: 0;
    transform: translateY(12px);
    animation: itemAppear 0.35s ease forwards;
}

    .search-item .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.75;
        margin: 0;
    }
