/* استایل کلی */
body {
    font-family: 'Yekan', sans-serif;
    background-color: #f0f4f8;
    color: #111827;  /* رنگ نوشته‌ها */
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    width: 375px;  /* عرض ثابت سایت */
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
}

/* جعبه مرکزی */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

/* هدر */
.header h1 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    text-align: center;
}

.header p {
    font-size: 14px;
    color: #111827;
    text-align: center;
}

/* اطلاعات خودرو */
.car-info {
    margin-bottom: 30px;
}

.car-info-header h2 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 5px;
}

.car-details p {
    font-size: 14px;
    color: #111827;
}

/* فرم ثبت سرویس */
.service-form {
    margin-bottom: 30px;
}

.service-form h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-form select, .service-form input, .service-form button {
    width: 335px;
    height: 48px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #D1D5DB;
}

.service-form button {
    background-color: #3498db;
    color: white;
    cursor: pointer;
}

.service-form button:hover {
    background-color: #2980b9;
}

/* تاریخچه سرویس‌ها */
.service-history ul {
    list-style-type: none;
    padding: 0;
}

.service-history li {
    background-color: #f2f2f2;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.service-history h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Navigation Bottom */
.navigation-bottom {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.nav-btn {
    text-align: center;
    color: #3498db;
    font-size: 14px;
    text-decoration: none;
}

.nav-btn img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.nav-btn:hover {
    color: #2980b9;
}
