.title-decoration {
    position: relative;
    padding-bottom: 8px;
}

.title-decoration::before {
    content: "";
    width: 48px;
    height: 4px;
    background-color: var(--lilac-100);
    position: absolute;
    bottom: 0;
    left: 4px;
}

.square-container {
    cursor: pointer;
    background-color: var(--gray-50);
    border: 1px solid var(--lilac-100);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.square-container:hover {
    transform: scale(1.1);
}

#seo-table-container {
    max-width: 100vw;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#seo-table-container::-webkit-scrollbar {
    display: none;
}

table {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.01), 0 30px 60px rgba(0, 0, 0, 0.04);
}

th,
td {
    padding: 8px;
    text-align: center;
}

th {
    background-color: var(--gray-50);
}

.seo-img-container {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    width: 64px;
    margin: 0 auto;
}

.seo-img-container img {
    width: 100%;
}

td {
    border-top: 1px solid var(--lilac-100);
}

td[colspan="4"] {
    font-weight: bold;
}

.tick svg {
    width: 32px;
    color: green;
}

.cross svg {
    width: 24px;
    color: red;
}

p {
    font-size: 1.05rem;
}

#seo-other-livechats {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

#seo-other-livechats img {
    max-height: 64px;
}

.seo-title {
    margin: 32px 0;
}
