.results-main-container {
    position: relative;
    max-height: 500px;
    padding: 20px;
}

.results-header-container {
    position: sticky;
    top: 0;
    background-color: #f8f8f8;
    z-index: 10;
}

.results-table-container {
    border-radius: 4px;
    border: 1px solid #ddd;
    position: relative;
    width: -webkit-max-content;
    width: max-content;
    max-width: 100%;
    max-height: -webkit-fill-available;
    max-height: fill-available;
    overflow: auto;
    margin-right: auto;
    margin-left: auto;
}

.results-table {
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0;
}

.results-header,
.results-row {
    display: results-table-results-row;
}

.results-header {
    background-color: #f8f8f8;
    color: rgb(24, 29, 31);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 14px;
}

.results-cell,
th {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    white-space: nowrap;
    text-align: left;
}

/* Add left border to first results-cell and results-header of each results-row */
.results-cell:first-child,
th:first-child {
    border-left: 1px solid #ddd;
}

.results-cell-keyword,
.results-cell-keyword th {
    min-width: 250px;
}

.results-cell-keyword {
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 5;
}

.results-cell-keyword::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1000px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.results-removed-bg {
    background-color: rgba(255, 0, 0, .1)
}

.keyword-results-header {
    position: sticky;
    left: 0;
    background-color: #f8f8f8;
    z-index: 5;
}

.results-cell-url,
.results-cell-url th {
    min-width: 250px;
}

.results-cell-url a {
    color: #0074d9;
}

.results-faded {
    color: #a6a6a6;
}

.results-row:nth-child(even) {
    background-color: #fff;
}

.results-row:nth-child(odd) {
    background-color: #f2f2f2;
}

.results-row:nth-child(even) .results-cell-keyword::before {
    background-color: #fff;
}

.results-row:nth-child(odd) .results-cell-keyword::before {
    background-color: #f2f2f2;
}

.results-truncate {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.results-info-blur {
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

/* Additional styles for icons */
.results-icon {
    vertical-align: middle;
    /* Aligns icon with text */
    height: 14px;
    /* Default height for icons */
    margin-right: 8px;
}



.results-icon-star {
    height: 10px;
    /* Specific height for star icon */
}

.results-removed-text {
    color: red;
    font-style: italic;
}

.result-post {
    padding: 50px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border-radius: 35px;
    box-shadow: rgba(237, 9, 54, 0.1) 20px 15px 100px 0px;
}

.result-post h3 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(154deg, #f97000, #c900db);
}

.centered {
    text-align: center;
}


/* Marker styling */
.results-marker {
    position: relative;
    margin: 0 0;
    color: #333;
    text-decoration: none;

    & svg {
        position: absolute;
        left: 0;
        top: -50%;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        pointer-events: none;
    }

    & path {
        transition: stroke-dashoffset 300ms linear;
        stroke-width: 2.0;
        stroke: rgba(255, 0, 0, 0.661);
        fill: none;
        stroke-linecap: round;
    }

    & path {
        stroke-dashoffset: 0;
    }
}