<?php
header('Content-Type: text/css');
?>
body {
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f5f7;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arbitration-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.lawyer-card {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 1rem;
}
.lawyer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.file-input-wrapper {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.page-count-warning {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.cost-display {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    color: #0d6efd;
    margin: 0.5rem 0;
    border: 1px solid #e9ecef;
}

/* جعبه کمیسیون */
.commission-box {
    border-left: 3px solid #0d6efd;
}

footer {
    background: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.ajax-loading {
    display: none;
    text-align: center;
    padding: 1rem;
}

.contract-status-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* فرم مینیمال شبیه سرویس‌های مدرن */
#caseForm .form-control,
#caseForm .form-select {
    border-radius: 0.75rem;
    font-size: 0.85rem;
    border-color: #dee2e6;
}
#caseForm .form-control:focus,
#caseForm .form-select:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

.form-label-sm {
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
}

/* جدول پرونده‌ها */
.table-hover tbody tr:hover {
    background-color: #f9fafb;
}

/* ریسپانسیو برای ورودی فایل‌ها */
@media (max-width: 576px) {
    .file-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}

/* دکمه‌های کوچک مینیمال */
.btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}
