/* تخصيصات صفحة المواد */

.search-container .form-control {
    padding-right: 3rem; /* مساحة للأيقونة */
    background-color: #fff;
}

.search-container .bi-search {
    right: 15px; /* مكان الأيقونة */
}

/* بطاقة المادة */
.subject-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* أيقونة المادة الدائرية */
.subject-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* ألوان الأيقونات والخلفيات */
.bg-purple-light { background-color: #f3f0ff; }
.text-purple { color: #6f42c1; }

.bg-cyan-light { background-color: #e0f7fa; }
.text-cyan { color: #00bcd4; }

.bg-orange-light { background-color: #fff3e0; }
.text-orange { color: #fd7e14; }

.bg-green-light { background-color: #e8f5e9; }
.bg-red-light { background-color: #ffebee; }
.bg-blue-light { background-color: #e3f2fd; }
.bg-gray-light { background-color: #f8f9fa; }

/* تمييز الكروت الخاصة (مثل القدرات) */
.border-purple {
    border: 1px solid #6f42c1 !important;
}
.bg-purple {
    background-color: #6f42c1;
}

/* Badge styling fix */
.subject-card .badge {
    font-weight: 500;
    font-size: 0.8rem;
}

