body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 20px;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #343a40; /* لون الخلفية */
    padding: 1rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.navbar a:hover {
    background-color: #495057; /* لون الخلفية عند التمرير */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}

.mt-5 {
    margin-top: 3rem; /* مسافة أعلى */
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #007bff; /* لون الزر */
    color: white;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3; /* لون الزر عند التمرير */
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-label {
    color: #212529; /* لون النص */
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057; /* لون النص */
    background-color: #fff; /* لون الخلفية */
    border: 1px solid #ced4da; /* لون الحدود */
    border-radius: 0.25rem; /* زوايا مستديرة */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select:focus {
    border-color: #80bdff; /* لون الحدود عند التركيز */
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); /* ظل عند التركيز */
}

.form-select option {
    padding: 0.5rem; /* مسافة داخل الخيارات */
}

/* تحسين الستايل عند التمرير */
.form-select:hover {
    border-color: #80bdff; /* لون الحدود عند التمرير */
}
.toast {
    position: fixed;
    top: 20px; /* المسافة من الأعلى */
    right: 20px; /* المسافة من اليمين */
    z-index: 1050; /* قيمة Z-index للتأكد من ظهورها فوق العناصر الأخرى */
    display: none; /* مخفية بشكل افتراضي */
    min-width: 250px; /* عرض أدنى */
    background-color: #f8f9fa; /* لون الخلفية */
    border: 1px solid #ced4da; /* لون الحدود */
    border-radius: 0.25rem; /* زوايا مستديرة */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* ظل */
    transition: opacity 0.3s ease, transform 0.3s ease; /* تأثيرات الانتقال */
}

.toast-header {
    background-color: #343a40; /* لون الخلفية */
    color: white; /* لون النص */
    padding: 0.5rem 1rem; /* المسافات الداخلية */
    border-bottom: 1px solid #ced4da; /* حدود أسفل */
}

.toast-body {
    padding: 1rem; /* المسافات الداخلية */
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.25rem; /* حجم الخط */
    color: white; /* لون الزر */
}

.btn-close:hover {
    color: #ffccc3; /* لون الزر عند التمرير */
}
