body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
  }

  /* Dashboard header styles */
  .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
  }

  .dashboard-title {
    font-size: 14px;
    font-weight: bold;
  }


  .dashboard-table {
    overflow: visible !important;
  }

  .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
  }

  /* Record info */
  .record-count {
    font-size: 5px;
    color: #555;
  }

  /* Action buttons container */
  .actions {
    display: flex;
    gap: 8px;
  }

  /* Buttons styling */
  .btn-custom {
    min-width: 120px;
  }

  /* Filter and dropdowns container */
  .filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  /* Main container with padding */
  .container {
    padding: 0 20px;
  }

  /* Table styles */
  .dashboard-table {
    margin-top: 20px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
  }

  /* Sticky header for table */
  thead th {
    background-color: #f1f1f1;
  }

  /* Action buttons in table rows */
  .table-action-btn {
    font-size: 12px;
  }

  /* Badge styles for status */
  .badge-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
  }

  /* Hover effect for table rows */
  tbody tr:hover {
    background-color: #f9f9f9;
  }

  /* Responsive adjustments */
  @media(max-width: 768px) {
    .dashboard-header {
      flex-direction: column;
      align-items: flex-start;
    }
    .actions {
      margin-top: 10px;
    }
  }


