   .crm-users-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 20px;
       flex-wrap: wrap;
       gap: 10px;
   }

   .crm-users-header h2 {
       margin: 0;
       color: #0a1f44;
   }

   .crm-users-filters form {
       display: flex;
       gap: 10px;
       flex-wrap: wrap;
   }

   .crm-users-filters input,
   .crm-users-filters select {
       padding: 8px 12px;
       border: 1px solid #ddd;
       border-radius: 6px;
       font-size: 0.95rem;
   }

   .crm-users-filters button {
       background: #035888;
       color: #fff;
       border: none;
       padding: 8px 15px;
       border-radius: 6px;
       cursor: pointer;
       transition: 0.2s;
   }

   .crm-users-filters button:hover {
       background: #023b61;
   }

   table.crm-users-table {
       width: 100%;
       border-collapse: collapse;
       margin-top: 15px;
   }

   table.crm-users-table th,
   table.crm-users-table td {
       padding: 12px;
       border-bottom: 1px solid #eee;
       text-align: left;
   }

   table.crm-users-table th {
       background: #fafafa;
   }

   table.crm-users-table td.actions {
       white-space: nowrap;
   }

   .crm-btn-edit,
   .crm-btn-delete {
       padding: 6px 12px;
       border: none;
       border-radius: 6px;
       font-size: 0.85rem;
       cursor: pointer;
       margin-right: 5px;
   }

   .crm-btn-edit {
       background: #023b61;
       color: #fff;
   }

   .crm-btn-delete {
       background: #c82333;
       color: #fff;
   }

   .crm-btn-edit:hover {
       background: #024b61;
   }

   .crm-btn-delete:hover {
       background: #a71d2a;
   }

   .crm-message {
       margin-bottom: 15px;
       padding: 10px;
       border-radius: 6px;
       text-align: center;
       font-size: 0.9rem;
       background: #e6ffe6;
       color: #218838;
   }

   @media (max-width: 768px) {

       .crm-users-filters input,
       .crm-users-filters select, 
       .crm-users-filters button {
           width: 100%
       }

       .crm-users-filters  {
           width: 100%
       }
   }