body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
  }
  
  /* Custom SweetAlert Toast Styling */
  .swal2-toast {
    padding: 1rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    max-width: 450px !important;
  }
  
  .swal2-toast.swal2-icon-success {
    border-left: 5px solid #48bb78 !important;
  }
  
  .swal2-toast.swal2-icon-warning {
    border-left: 5px solid #ecc94b !important;
  }
  
  .swal2-toast.swal2-icon-error {
    border-left: 5px solid #e53e3e !important;
  }
  
  .swal2-toast.swal2-icon-info {
    border-left: 5px solid #4299e1 !important;
  }
  
  .swal2-toast .swal2-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
  }
  
  .swal2-toast .swal2-html-container {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .login-page {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    height: 100vh;
  }
  
  .login-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    max-width: 100px;
    height: auto;
  }
  
  .kanban-board {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .kanban-column-wrapper {
    flex: 1;
    min-width: 0;
    padding: 0 3px;
  }
  
  .kanban-column {
    height: calc(100vh - 135px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  
  .kanban-column .card-header {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
  }
  
  .kanban-column .card-body {
    overflow-y: auto;
    padding: 6px;
    flex-grow: 1;
  }
  
  .kanban-item {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 6px 8px;
    margin-bottom: 6px;
    border-left: 3px solid #dee2e6;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
    font-size: 0.8rem;
  }
  
  .kanban-item[data-priority="high"] {
    border-left: 4px solid #dc3545;
  }
  
  .kanban-item-header {
    margin-bottom: 3px;
  }
  
  .kanban-item-header a {
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .kanban-item-body {
    padding: 8px;
  }
  
  .kanban-item-body .customer-name {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
  
  .kanban-item-body small {
    font-size: 0.7rem;
  }
  
  .kanban-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .dragging {
    opacity: 0.5;
  }
  
  .droppable {
    background-color: #e9ecef;
  }
  
  @media (max-width: 991.98px) {
    .kanban-column-wrapper {
        min-width: 280px;
    }
  }
  
  .modal-lg {
    max-width: 800px;
  }
  
  #statusChangeModal .form-label {
    color: #495057;
  }
  
  #statusChangeModal p {
    font-size: 1rem;
    padding: 0.375rem 0;
  }
  
  /* If you want to add any specific styling for shipped items */
  .kanban-item[data-status="Shipped"] {
    background-color: #f8fff8; /* Light green background */
  }
  
  /* Make the container full-width */
  .container-fluid {
    padding: 0;
    max-width: 100%;
  }
  
  /* Adjust the navbar to match the full-width layout */
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Hide the horizontal scrollbar */
  .kanban-board::-webkit-scrollbar {
    display: none;
  }
  
  .kanban-board::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .kanban-board::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  .kanban-board::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  .card-header {
    padding: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  
  .kanban-item .form-check {
    margin-right: 5px;
  }
  
  .kanban-item .form-check-input {
    cursor: pointer;
  }
  
  .kanban-item-header .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .kanban-item:has(.form-check-input:checked) {
    border: 2px solid #0d6efd;
    background-color: #f8f9fa;
  }
  
  #multiSelectControls {
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1030;
  }
  
  /* Add these styles for better modal layout */
  .modal-body .row:first-child p {
    font-size: 1.1rem;
    padding: 0.25rem 0;
    margin-bottom: 0;
  }
  
  .modal-body hr {
    margin: 1.5rem 0;
    opacity: 0.15;
  }
  
  .modal-body h6 {
    color: #495057;
    font-weight: 600;
  }
  
  #additionalFields {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
  }
  
  /* Search section styles */
  .input-group {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 0;
  }
  
  .input-group-text {
    border: none;
    background-color: #f8f9fa;
  }
  
  .input-group .form-control {
    border: none;
    border-left: 1px solid #dee2e6;
  }
  
  .input-group .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
  }
  
  /* Animation for filtering */
  .kanban-item {
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  
  /* Search container spacing */
  .search-container {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .search-container .input-group {
    margin-bottom: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container-fluid .row .col-md-3 {
        margin-bottom: 10px;
    }
    
    .container-fluid .row .col-md-3:last-child {
        margin-bottom: 0;
    }
    
    #multiSelectControls {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
    }
  }
  
  /* Add these to your existing styles */
  .navbar-nav .dropdown-menu {
    margin-top: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
  }
  
  .dropdown-item i {
    width: 20px;
    text-align: center;
  }
  
  .dropdown-item:hover {
    background-color: #f8f9fa;
  }
  
  .navbar .dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: middle;
  }
  
  /* Style for the logout button to look like a regular link */
  .dropdown-item[type="submit"] {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #212529;
  }
  
  .dropdown-item[type="submit"]:hover {
    background-color: #f8f9fa;
  }
  
  .product-counter {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 0.65rem;
    margin-right: 4px;
    text-align: center;
    background-color: #0062cc;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    border: none;
  }
  
  .invc-date {
    font-size: 0.65rem;
    padding: 1px 3px;
    background: green;
    color: white !important;
    border-radius: 3px;
    cursor: pointer;
  }
  
  /* If you need to adjust the scrollbar appearance for better UX */
  .kanban-column .card-body::-webkit-scrollbar {
    width: 6px;
  }
  
  .kanban-column .card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .kanban-column .card-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  
  .kanban-column .card-body::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }
  
  .kanban-item-body h6 {
    font-size: 0.8rem;
    margin-bottom: 3px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Navbar styles */
  .navbar {
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0062cc, #0096ff) !important;
  }
  
  .navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    height: 40px;
    margin-right: 10px;
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
    color: #fff !important;
  }
  
  .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
  }
  
  .nav-link.active {
    color: #fff !important;
    font-weight: 600;
  }
  
  .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
  }
  
  .dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }
  
  .dropdown-item i {
    color: #0062cc;
  }
  
  .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #0062cc;
    font-size: 16px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Filter section styles */
  .filter-section {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
  }
  
  .filter-section .form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    font-size: 0.9rem;
    box-shadow: none;
    transition: all 0.2s;
  }
  
  .filter-section .form-control:focus {
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 98, 204, 0.15);
  }
  
  .filter-section .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    font-size: 0.9rem;
    height: auto;
    background-position: right 12px center;
  }
  
  .filter-section .form-select:focus {
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 98, 204, 0.15);
  }
  
  .filter-section label {
    font-weight: 500;
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 4px;
  }
  
  .filter-section .btn {
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 6px;
  }
  
  .filter-section .input-group-text {
    background-color: #fff;
    border-right: none;
    border-radius: 6px 0 0 6px;
  }
  
  .filter-section .input-group .form-control {
    border-left: none;
    border-radius: 0 6px 6px 0;
  }
  
  /* Multi-select container styles */
  .multi-select-container {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  .multi-select-container.visible {
    height: 70px; /* Fixed height when visible */
  }
  
  #multiSelectControls {
    text-align: right;
    padding: 10px 0;
  }
  
  .btn-mark-completed {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.2);
    transition: all 0.2s;
  }
  
  .btn-mark-completed:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
  }
  
  /* Make all columns equal width */
  @media (min-width: 768px) {
    .kanban-column-wrapper {
        width: calc(100% / 7); /* 7 is the number of kanban columns */
        padding: 0 2px;
    }
  }