/* CSS Styling Not finished yet. First finish it then continue polishing the UI */
/* Tooltip Styling */
#seo-tooltip-box.seo-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 300px;
    padding: 1rem;
    background-color: #f3f4f6;
    /* background-color: #fefce8; */
    border: 1px solid var(--e-global-color-primary);
    border-radius: .5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all .3s ease;
}

/* Tooltip Visible State */
#seo-tooltip-box.seo-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.checklist-group-title {
    background-color: #EEE;
}

.checklist-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: normal;
}

.checklist-label {
    cursor: pointer;
}

.checklist-item input[type="checkbox"] {
    margin-right: .75rem;
    width: 1rem;
    height: 1rem;
}

/* Adjusting for smaller screens */
@media (max-width: 500px) {
    #seo-tooltip-box.seo-tooltip {
        right: 10px;
        left: 10px;
        max-width: unset;
    }
}