/* ============================================
   إعدادات عامة
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    color: #333;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   Header
   ============================================ */
.main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: white;
    margin-bottom: 2rem;
}

.header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.header-title-text {
    word-break: break-word;
}

.header-title i {
    font-size: 2rem;
    color: #ffd700;
}

.btn-add {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.6);
    color: white;
}

.btn-add i {
    flex-shrink: 0;
}

.btn-text {
    white-space: nowrap;
}

/* ============================================
   Stats Cards
   ============================================ */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-right: 4px solid;
    min-height: 100px;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-primary {
    border-color: #667eea;
}

.stat-success {
    border-color: #11998e;
}

.stat-warning {
    border-color: #f093fb;
}

.stat-info {
    border-color: #4facfe;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.stat-primary .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-success .stat-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.stat-warning .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-info .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #2d3748;
}

.stat-info p {
    margin: 0.25rem 0 0 0;
    color: #718096;
    font-size: 0.9rem;
}

/* ============================================
   Main Card
   ============================================ */
.main-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.card-header-custom h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-body-custom {
    padding: 2rem;
}

/* ============================================
   Filter Section
   ============================================ */
.filter-section {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.input-group-custom {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
    z-index: 10;
}

.form-control-custom {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Cairo', sans-serif;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: text;
}

.form-control-custom:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control-custom:hover {
    border-color: #cbd5e0;
}

textarea.form-control-custom {
    padding: 0.75rem 1rem;
    resize: vertical;
    min-height: 200px;
}

.btn-reset {
    width: 100%;
    background: #e2e8f0;
    border: none;
    color: #4a5568;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #cbd5e0;
    color: #2d3748;
}

/* ============================================
   Table
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    -webkit-overflow-scrolling: touch;
}

.table-responsive-mobile {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 767px) {
    .table-responsive-mobile {
        display: block;
        width: 100%;
    }
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table-custom thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.table-custom thead th {
    padding: 1.25rem 1rem;
    font-weight: 700;
    text-align: right;
    font-size: 0.95rem;
    border: none;
}

.table-custom tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.table-custom tbody tr:hover {
    background: #f7fafc;
    transform: scale(1.01);
}

.table-custom tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    color: #4a5568;
}

.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.badge-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-action {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    white-space: nowrap;
    flex: 1;
}

@media (max-width: 767px) {
    .btn-action {
        margin-left: 0;
        width: 100%;
    }
}

.btn-edit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-delete {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
    color: white;
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Pagination
   ============================================ */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.pagination-info {
    color: #718096;
    font-weight: 600;
}

.pagination-custom {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.pagination-custom .page-item {
    margin: 0;
}

.pagination-custom .page-link {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.pagination-custom .page-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.pagination-custom .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.pagination-custom .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   Modal
   ============================================ */
.modal {
    z-index: 1055;
}

.modal-backdrop {
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1056;
    pointer-events: auto;
}

.modal-header-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.modal-header-custom .modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.modal-title-text {
    word-break: break-word;
}

.btn-close-custom {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.btn-close-custom:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.modal-body-custom {
    padding: 2rem;
    background: #f7fafc;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.form-group-custom {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group-custom * {
    pointer-events: auto;
}

.form-label-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-label-custom i {
    color: #667eea;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
}

.form-hints {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hint-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #edf2f7;
    border-radius: 8px;
    color: #4a5568;
    font-size: 0.9rem;
}

.hint-item span {
    flex: 1;
    word-break: break-word;
}

.hint-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.modal-footer-custom {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.btn-cancel {
    background: #e2e8f0;
    border: none;
    color: #4a5568;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-cancel:hover {
    background: #cbd5e0;
    color: #2d3748;
}

.btn-cancel:focus {
    outline: 2px solid #cbd5e0;
    outline-offset: 2px;
}

.btn-save {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.6);
    color: white;
}

.btn-save:focus {
    outline: 2px solid rgba(17, 153, 142, 0.5);
    outline-offset: 2px;
}

.btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   Alerts
   ============================================ */
.alert-custom {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 350px;
    max-width: 90%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Extra Large Screens (Large Desktops) */
@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1320px;
        margin: 0 auto;
    }
}

/* Large Screens (Desktops) */
@media (max-width: 1399px) {
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 991px) {
    .main-header {
        margin-bottom: 1.5rem;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .header-title i {
        font-size: 1.75rem;
    }
    
    .btn-add {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.75rem;
    }
    
    .filter-section {
        padding: 1.25rem;
    }
    
    .table-custom thead th {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .table-custom tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .modal-dialog {
        max-width: 90%;
        margin: 1rem auto;
    }
    
    .modal-body-custom {
        padding: 1.5rem;
    }
}

/* Small Screens (Large Phones) */
@media (max-width: 767px) {
    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 0;
    }
    
    .main-header {
        margin-bottom: 1rem;
        padding: 1rem 0;
    }
    
    .header-title {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .header-title i {
        font-size: 1.5rem;
    }
    
    .btn-add {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.75rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .stat-card {
        flex-direction: row;
        padding: 1.25rem;
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .stat-info h3 {
        font-size: 1.5rem;
    }
    
    .stat-info p {
        font-size: 0.85rem;
    }
    
    .main-card {
        border-radius: 15px;
    }
    
    .card-header-custom {
        padding: 1.25rem 1.5rem;
    }
    
    .card-header-custom h3 {
        font-size: 1.25rem;
    }
    
    .card-body-custom {
        padding: 1.5rem;
    }
    
    .filter-section {
        padding: 1rem;
    }
    
    .filter-section .row {
        margin: 0;
    }
    
    .filter-section .col-md-4,
    .filter-section .col-md-3,
    .filter-section .col-md-2 {
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .btn-reset {
        width: 100%;
    }
    
    .table-wrapper {
        border-radius: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-custom {
        min-width: 800px;
        font-size: 0.85rem;
    }
    
    .table-custom thead th:first-child,
    .table-custom tbody td:first-child {
        position: sticky;
        right: 0;
        background: white;
        z-index: 5;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .table-custom thead th {
        padding: 0.875rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .table-custom tbody td {
        padding: 0.875rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .badge-custom {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-action {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        margin-left: 0.25rem;
        margin-bottom: 0.25rem;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pagination-info {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .pagination-custom {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-custom .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .modal-dialog {
        max-width: 95%;
        margin: 0.5rem;
    }
    
    .modal-content-custom {
        border-radius: 15px;
    }
    
    .modal-header-custom {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header-custom .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-body-custom {
        padding: 1.5rem;
    }
    
    .modal-footer-custom {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cancel,
    .btn-save {
        width: 100%;
        justify-content: center;
    }
    
    .form-group-custom {
        margin-bottom: 1.25rem;
    }
    
    .form-label-custom {
        font-size: 0.95rem;
    }
    
    .form-control-custom {
        padding: 0.625rem 0.875rem 0.625rem 2.5rem;
        font-size: 0.95rem;
    }
    
    textarea.form-control-custom {
        padding: 0.625rem 0.875rem;
        min-height: 150px;
    }
    
    .hint-item {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .alert-custom {
        min-width: 90%;
        max-width: 95%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* Extra Small Screens (Small Phones) */
@media (max-width: 575px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-title {
        font-size: 1.1rem;
    }
    
    .header-title i {
        font-size: 1.25rem;
    }
    
    .btn-add {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .stat-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stat-info h3 {
        font-size: 1.25rem;
    }
    
    .stat-info p {
        font-size: 0.8rem;
    }
    
    .card-header-custom {
        padding: 1rem 1.25rem;
    }
    
    .card-header-custom h3 {
        font-size: 1.1rem;
    }
    
    .card-body-custom {
        padding: 1.25rem;
    }
    
    .filter-section {
        padding: 0.875rem;
    }
    
    .input-icon {
        right: 0.75rem;
        font-size: 1rem;
    }
    
    .form-control-custom {
        padding: 0.5rem 0.75rem 0.5rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .table-custom {
        min-width: 700px;
        font-size: 0.8rem;
    }
    
    .table-custom thead th:first-child,
    .table-custom tbody td:first-child {
        position: sticky;
        right: 0;
        background: white;
        z-index: 5;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    
    .table-custom thead th {
        padding: 0.75rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .table-custom tbody td {
        padding: 0.75rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .btn-action {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .modal-dialog {
        max-width: 100%;
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .modal-content-custom {
        border-radius: 0;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .modal-header-custom {
        padding: 1rem 1.25rem;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .modal-body-custom {
        padding: 1.25rem;
    }
    
    .modal-footer-custom {
        padding: 1rem 1.25rem;
        position: sticky;
        bottom: 0;
        background: white;
        z-index: 10;
        border-top: 2px solid #e2e8f0;
    }
    
    .form-label-custom {
        font-size: 0.9rem;
    }
    
    .form-control-custom {
        font-size: 0.9rem;
    }
    
    textarea.form-control-custom {
        min-height: 120px;
    }
    
    .pagination-custom .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .pagination-info {
        font-size: 0.85rem;
    }
}

/* Landscape Orientation (Phones) */
@media (max-width: 991px) and (orientation: landscape) {
    .modal-dialog {
        max-height: 90vh;
    }
    
    .modal-content-custom {
        max-height: 90vh;
    }
    
    .modal-body-custom {
        max-height: calc(90vh - 200px);
        overflow-y: auto;
    }
    
    textarea.form-control-custom {
        min-height: 100px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-action,
    .btn-add,
    .btn-cancel,
    .btn-save,
    .btn-reset {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-control-custom {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    textarea.form-control-custom {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .stat-icon,
    .btn-add i,
    .header-title i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .btn-add,
    .filter-section,
    .btn-action,
    .modal,
    .pagination-wrapper {
        display: none !important;
    }
    
    .main-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .table-custom {
        font-size: 0.8rem;
    }
    
    body {
        background: white;
    }
}
