/* Base Styles */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
    direction: rtl; /* Set the direction to RTL for Arabic */
    text-align: right;
}

.navbar {
    background-color: #0d6efd;
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.card-text {
    font-size: 1rem;
    text-align: center;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* RTL-specific styles for select2 */
.select2-container--default .select2-selection--single {
    direction: rtl;
    text-align: right;
}

.navbar-brand::before {
    content: '';
    display: inline-block;
    background-image: url('logo.png'); /* Adjust path to your logo */
    background-size: cover;
    width: 70px;  /* Set the width of the logo */
    height: 70px; /* Set the height of the logo */
    margin-left: 10px; /* Space between logo and text */
    vertical-align: middle;
}