/* استایل کلی سایت */
body {
    font-family: 'Vazir', 'Tanha', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.table th {
    border-top: none;
    font-weight: 600;
}

.btn {
    border-radius: 5px;
}

/* استایل فرم‌ها */
.form-control, .form-select {
    border-radius: 5px;
    padding: 10px 15px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* استایل دکمه‌ها */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* استایل جداول */
.table-responsive {
    border-radius: 10px;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* استایل برای حالت راست‌چین */
.rtl {
    direction: rtl;
    text-align: right;
}

/* استایل برای اعداد فارسی */
.persian-number {
    font-family: 'Vazir', 'Tanha', 'Segoe UI', sans-serif;
}

/* استایل برای هدرها */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* استایل برای کارت‌های اطلاعاتی */
.info-card {
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}