.computed-section {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.computed-title {
    color: #2c3e50;
    border-bottom: 3px solid #42b883;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.computed-icon {
    color: #42b883;
    font-size: 1.8rem;
    margin-right: 15px;
}
.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #42b883;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.feature-name {
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.example-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow: hidden;
}
.example-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}
.example-result {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
    min-height: 80px;
}
.comparison-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}
.comparison-table th {
    background-color: #42b883;
    color: white;
    padding: 15px;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.tip-box {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.info-box {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.interactive-demo {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}
.demo-area {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px dashed #ccc;
}
.computed-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #42b883;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
    font-weight: bold;
}
.code-block {
    position: relative;
    margin: 20px 0;
}
.code-block pre {
    margin: 0;
    border-radius: 8px;
}
.code-block-title {
    background-color: #42b883;
    color: white;
    padding: 8px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 0.9rem;
    font-weight: bold;
}
.performance-demo {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    text-align: center;
}
.performance-box {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-width: 150px;
}
.counter {
    font-size: 2rem;
    font-weight: bold;
    color: #42b883;
    margin-bottom: 10px;
}
.cache-diagram {
    text-align: center;
    margin: 25px 0;
}
.cache-diagram .box {
    display: inline-block;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #42b883;
    font-weight: bold;
    margin: 0 10px;
}
.cache-diagram .arrow {
    color: #42b883;
    font-size: 1.5rem;
    margin: 0 10px;
}
.workflow-box {
    background-color: #f1f8ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}
.workflow-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #dee2e6;
}
.workflow-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.step-number {
    display: inline-block;
    background-color: #42b883;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: bold;
}
.setter-getter-box {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}
.setter-box, .getter-box {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.setter-box {
    border-top: 4px solid #ff6b6b;
}
.getter-box {
    border-top: 4px solid #4ecdc4;
}
