/* General styles */
body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

/* Cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}
.card-header {
    font-weight: bold;
}

/* Tables */
.table th {
    background-color: #f1f1f1;
    font-weight: 600;
}
.table-responsive {
    overflow-x: auto;
}

/* Forms */
.form-control,
.form-select {
    margin-bottom: 10px;
}
.required-field::after {
    content: " *";
    color: red;
}
.form-check-inline {
    margin-left: 1rem;
    margin-right: 0;
}

/* Alerts */
.alert {
    margin-top: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    padding-right: 0;
    color: #6c757d;
}

/* Buttons */
.btn {
    margin: 0 0.25rem;
}

/* Responsive navigation and layout */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 10px;
    }
    .float-left {
        float: none !important;
        margin-top: 10px;
    }
}
