/* ستايلات للرسوم البيانية البسيطة المستخدمة في قسم المهارات */
.simple-bar-chart {
    margin-top: 15px;
}

.bar-container {
    margin-bottom: 15px;
}

.bar-track {
    background-color: #f0f0f0;
    border-radius: 8px;
    height: 20px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    background-color: var(--accent-color);
    border-radius: 8px;
    height: 100%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
    top: 0;
    width: 0; /* البداية بعرض صفر */
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* تأثير حركة ناعمة */
}

.bar-label {
    padding: 0 10px;
    color: white;
    font-weight: bold;
    line-height: 20px;
    font-size: 14px;
    display: block;
    position: relative;
    z-index: 1;
}

/* تفعيل الحركة عند تحميل الصفحة */
.simple-bar-chart.loaded .bar-fill {
    width: var(--bar-width, 0%);
}

/* يمكنك إضافة المزيد من الستايلات المستخدمة في JavaScript هنا */