/* Scrap Prices Frontend CSS */
.sp-price-list-wrap {
    font-family: Tahoma, Arial, sans-serif;
    direction: rtl;
    max-width: 700px;
    margin: 20px auto;
}
.sp-price-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}
.sp-cat-title {
    margin: 0 0 6px;
    font-size: 18px;
    color: #2c3e50;
}
.sp-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sp-price-item {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    transition: background .15s;
}
.sp-price-item:hover { background: #fafafa; }
.sp-price-item:last-child { border-bottom: none; }
.sp-item-title { color: #444; }
.sp-item-separator { color: #999; }
.sp-price-value {
    font-weight: bold;
    color: #e74c3c;
    font-size: 16px;
    direction: ltr;
    display: inline-block;
}
.sp-item-unit { color: #666; font-size: 13px; }
.sp-no-price { color: #aaa; font-style: italic; }

/* Chart Styles */
.sp-chart-wrap {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sp-chart-title {
    margin: 0 0 20px;
    font-size: 16px;
    color: #333;
    text-align: center;
    font-weight: 600;
}
.sp-chart-container {
    position: relative;
    width: 100%;
    height: 350px;
}
.sp-chart-canvas {
    width: 100% !important;
    height: 100% !important;
}
.sp-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    justify-content: center;
}
.sp-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.sp-legend-color {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    display: inline-block;
}
.sp-legend-label {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .sp-price-list-wrap {
        max-width: 100%;
        padding: 0 10px;
    }
    .sp-chart-container {
        height: 250px;
    }
    .sp-legend-item {
        font-size: 11px;
    }
}