body {
    font-family: 'Vazir', sans-serif;
    background-color: #f8f9fa;
    text-align: right; /* راست‌چین کردن متن */
}

h1 {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
}

#route-result {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 50px;
}

/* واکنشگرا کردن dropdownها */
@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* استایل Select2 */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 38px;
    padding: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

/* حالت تاریک */
body.dark-mode {
    background-color: #333;
    color: #fff;
}

body.dark-mode #route-result {
    background-color: #444;
    color: #fff;
}

body.dark-mode .navbar {
    background-color: #222 !important;
}

body.dark-mode .btn-secondary {
    background-color: #555;
    border-color: #555;
}

/* استایل کارت‌ها */
.route-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-card .card-body {
    padding: 15px;
}

.route-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.route-card .card-text {
    color: #666;
}

/* استایل تغییر خط */
.line-change {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* استایل زمان سفر */
.travel-time {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}