body {
    font-family: Vazir, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
}

.table {
    margin-top: 20px;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: bold;
}

.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    background-color: #343a40;
    color: white;
}

.alert {
    margin-bottom: 20px;
}

.form-control, .form-select {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: #343a40;
    box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.25);
}

.table-hover tbody tr:hover {
    background-color: rgba(52, 58, 64, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table thead th {
    background-color: #343a40;
    color: white;
}