/* Description Enhancer Styles */
.mlm-instructions-wrapper {
    background: #f8fafb;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.mlm-instructions-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ed;
}

.instructions-icon {
    font-size: 20px;
}

.instructions-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a5276;
}

.mlm-instructions-body {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* Structured descriptions */
.mlm-structured-description {
    padding: 10px 0;
}

.mlm-structured-description p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.mlm-steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mlm-steps-list .mlm-step {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f6;
    transition: all 0.2s ease;
}

.mlm-steps-list .mlm-step:hover {
    border-color: #2e86c1;
    box-shadow: 0 2px 10px rgba(46, 134, 193, 0.1);
}

.mlm-steps-list .mlm-step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 4px;
    line-height: 1.5;
    color: #333;
}

/* Images in descriptions */
.mlm-structured-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}