.session-icon {
    color: #4a6ee0;
    margin-right: 10px;
    font-size: 1.2em;
}
.example-card {
    background-color: #f8f9fa;
    border-left: 4px solid #4a6ee0;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}
.comparison-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 25px 0;
}
.comparison-table th {
    background-color: #4a6ee0;
    color: white;
    text-align: center;
}
.benefit-box {
    background-color: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #d0e3ff;
}
.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.performance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}
.code-tabs {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 25px 0;
}
.code-tabs-nav {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 10px;
}
.code-tab {
    background: none;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.code-tab.active {
    background-color: #4a6ee0;
    color: white;
}
.code-tab-content {
    display: none;
    padding: 0;
}
.code-tab-content.active {
    display: block;
}
.property-list {
    list-style-type: none;
    padding-left: 0;
}
.property-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.property-list li:last-child {
    border-bottom: none;
}
