.rating-schema-box {
                max-width: 250px;
                padding: 10px;
                border: 1px solid #ddd;
                border-radius: 10px;
                background: #fff;
                text-align: center;
                font-family: Arial, sans-serif;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            .rating-stars {
                font-size: 22px;
                color: #FFD700;
                margin-bottom: 5px;
            }
            .rating-bar {
                width: 100%;
                height: 8px;
                background: #ddd;
                border-radius: 5px;
                overflow: hidden;
                margin-bottom: 5px;
            }
            .rating-fill {
                height: 100%;
                background: #FFD700;
                transition: width 0.5s ease-in-out;
            }
            .rating-text {
                font-size: 14px;
                color: #333;
                font-weight: bold;
            }
            
            /* LLMs TXT Manager Design */
            
            .llms-feature {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
}

.llms-feature input {
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* 🔒 Locked State */
.llms-feature.llms-locked {
    opacity: 0.5;
    pointer-events: none; /* disable clicks */
}

.llms-locked-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-30%, -30%);
    text-align: center;
}

.llms-locked-overlay p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #d63638;
}

.llms-buy-link {
    display: inline-block;
    padding: 8px 14px;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.llms-buy-link:hover {
    background: #005a87;
}

.llms-setting {
    position: relative;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.llms-setting input[disabled] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.llms-locked {
    opacity: 0.6;
    pointer-events: none;
}

.llms-locked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: auto;
}

.llms-locked-overlay p {
    margin: 8px 0;
    font-weight: bold;
    color: #d63638;
}
