/* Description Formatter Styles */
.description-container {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.description-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.description-item:hover {
    transform: translateX(4px);
}

.description-item:last-child {
    margin-bottom: 0;
}

.item-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.description-item:hover .item-number {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.item-content {
    flex: 1;
    color: #333;
    font-size: 14px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .description-container {
        padding: 12px;
        margin: 12px 0;
    }
    
    .description-item {
        margin-bottom: 10px;
    }
    
    .item-number {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        margin-right: 10px;
    }
    
    .item-content {
        font-size: 13px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .description-container {
        background: #2d3748;
        border-left-color: #667eea;
    }
    
    .item-content {
        color: #e2e8f0;
    }
} 