.syntax-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}
.syntax-title {
    color: #42b983;
    border-left: 4px solid #42b983;
    padding-left: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.code-demo {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.code-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}
.code-demo-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}
.example-tabs {
    margin-bottom: 1rem;
}
.example-tabs .nav-link {
    color: #6c757d;
    font-weight: 500;
}
.example-tabs .nav-link.active {
    color: #42b983;
    background-color: #f8f9fa;
    border-color: #dee2e6 #dee2e6 #f8f9fa;
}
.syntax-card {
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    height: 100%;
}
.syntax-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.syntax-card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
    font-weight: bold;
    color: #2c3e50;
}
.syntax-card-body {
    padding: 1.25rem;
}
.directive-list {
    list-style-type: none;
    padding-left: 0;
}
.directive-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.directive-list li:last-child {
    border-bottom: none;
}
.directive-name {
    font-family: 'Courier New', monospace;
    background-color: #e9ecef;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: bold;
    color: #d63384;
}
.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}
.comparison-table td {
    vertical-align: middle;
}
.badge-syntax {
    background-color: #42b983;
    color: white;
}
.tip-box {
    background-color: #e8f4ff;
    border-left: 4px solid #3498db;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 0.375rem 0.375rem 0;
}
.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 0.375rem 0.375rem 0;
}
.syntax-diagram {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    margin: 1rem 0;
    border: 1px solid #e9ecef;
}
