body {
    background: #f7fafc;
    color: #1F2937;
    font-family: 'Tajawal', 'Cairo', Arial, sans-serif;
}
.card-header.bg-primary {
    background-color: #2563EB !important;
}
.btn-primary {
    background-color: #2563EB !important;
    border-color: #2563EB !important;
}
.btn-danger {
    background-color: #EF4444 !important;
    border-color: #EF4444 !important;
}
.btn-warning {
    background-color: #F59E0B !important;
    border-color: #F59E0B !important;
}
.btn-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
}
.product-card {
    border: 2px solid #2563EB;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.invoice-header {
    background: #2563EB;
    color: #fff;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
}
.table-header {
    background-color: #2563EB;
    color: white;
}
.search-box {
    position: relative;
}
.search-box .form-control {
    padding-right: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.search-box .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563EB;
}
.client-search-results {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.client-search-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}
.client-search-item:hover {
    background-color: #f3f4f6;
}
.client-search-item.active {
    background-color: #ebf5ff;
}
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}
.status-active {
    background-color: #10B981;
    color: white;
}
.status-inactive {
    background-color: #6B7280;
    color: white;
}
.action-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.2s;
}
.action-icon-delete {
    background-color: #EF4444;
    color: white;
}
.action-icon-edit {
    background-color: #F59E0B;
    color: white;
}
.action-icon-view {
    background-color: #2563EB;
    color: white;
}
.action-icon:hover {
    transform: scale(1.1);
}
