.skyseo-ai-schema-shell {
    max-width: 1000px;
    margin: 20px 0;
}

.skyseo-ai-schema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.skyseo-ai-schema-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.skyseo-ai-schema-card h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f1;
    font-size: 15px;
}

.skyseo-ai-schema-field {
    display: block;
    margin-bottom: 15px;
}

.skyseo-ai-schema-field > span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.skyseo-ai-schema-check {
    display: block;
    margin-bottom: 5px;
}

.skyseo-ai-schema-row {
    display: flex;
    gap: 15px;
}

.skyseo-ai-schema-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skyseo-ai-schema-status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f0f0f1;
    color: #3c434a;
}

.skyseo-ai-schema-status-running {
    background: #e5f5fa;
    color: #0073aa;
}

.skyseo-ai-schema-status-paused {
    background: #fef8ee;
    color: #d63638;
}

.skyseo-ai-schema-status-completed {
    background: #edfaef;
    color: #00a32a;
}

.skyseo-ai-schema-status-timestamp {
    font-size: 12px;
    color: #8c8f94;
}

.skyseo-ai-schema-tab-content {
    animation: skyseoFadeIn 0.3s ease;
}

/* Responsive Button Stacking for Sidebar */
.skyseo-editor-panel .skyseo-ai-schema-actions-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.skyseo-editor-panel .skyseo-ai-schema-actions-row .button {
    width: 100%;
    text-align: center;
    margin: 4px 0 !important;
}

@keyframes skyseoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
