.props-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 25px 0;
}
.props-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    border: none;
}
.props-table tr:hover {
    background-color: #f8f9fa;
}
.props-table td {
    vertical-align: middle;
}
.type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    margin: 2px;
}
.type-string { background: #e3f2fd; color: #1565c0; }
.type-number { background: #e8f5e9; color: #2e7d32; }
.type-boolean { background: #fff3e0; color: #ef6c00; }
.type-array { background: #f3e5f5; color: #7b1fa2; }
.type-object { background: #e0f2f1; color: #00695c; }
.type-function { background: #fff8e1; color: #ff8f00; }
.type-symbol { background: #fce4ec; color: #c2185b; }
.example-box {
    background-color: #f8f9fa;
    border-left: 5px solid #764ba2;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}
.code-demo {
    background-color: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
}
.validation-diagram {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    margin: 25px 0;
    position: relative;
}
.validation-diagram::before {
    content: '验证流程';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #667eea;
    color: white;
    padding: 3px 12px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.comparison-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid #764ba2;
}
.warning-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}
.best-practice {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}
.props-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}
.flow-item {
    text-align: center;
    padding: 15px;
    margin: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 150px;
    position: relative;
}
.flow-item::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #667eea;
}
.flow-item:last-child::after {
    display: none;
}
.flow-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #764ba2;
}
.props-playground {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}
.tab-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}
.tab-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.tab-button.active {
    background: white;
    border-bottom: 3px solid #764ba2;
}
.tab-content {
    padding: 20px;
    display: none;
}
.tab-content.active {
    display: block;
}
.props-checklist {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.checklist-item input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}
