/* Schema Star - Help & Documentation */
.star-help-page { max-width: 1400px; margin: 20px auto; }
.star-help-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.star-help-header h1 { margin: 0 0 10px 0; font-size: 2.5em; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
.star-help-header p { margin: 0; font-size: 1.2em; opacity: 0.95; }
.star-help-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 0;
}
.star-help-tab {
    padding: 15px 25px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.star-help-tab:hover { background: #e0e0e0; color: #333; }
.star-help-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.star-help-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}
.star-help-tab-content { display: none; }
.star-help-tab-content.active { display: block; }
.star-help-section { margin-bottom: 40px; }
.star-help-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}
.star-help-section h3 {
    color: #333;
    font-size: 1.4em;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.star-help-section h3 .dashicons { color: #667eea; font-size: 1.2em; }
.star-help-feature {
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}
.star-help-feature h4 { margin: 0 0 10px 0; color: #667eea; font-size: 1.2em; }
.star-help-feature p { margin: 0; line-height: 1.8; color: #555; }
.star-help-feature ul { margin: 15px 0 0 20px; padding: 0; }
.star-help-feature ul li { margin: 10px 0; line-height: 1.7; color: #555; }
.star-help-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}
.star-help-warning strong { color: #856404; }
.star-help-info {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}
.star-help-info strong { color: #0c5460; }
.star-help-example-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.star-help-example-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .star-help-tabs { flex-direction: column; }
    .star-help-tab { width: 100%; text-align: center; }
    .star-help-example-image { max-width: 100%; }
}
