.filters {
  display: flex;
  flex-direction: column;
  gap: 30px;

  .filterButtons {
    display: flex;
    gap: 24px;

    .filterButton {
        padding: 0;
        background-color: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;

        &:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .filterButtonBox {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 10px;
            gap: 20px;

            .filterButtonIcon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
            }

            .filterButtonLabel {
                flex-grow: 1;
                font-weight: 500;
                color: #333;
                padding-top: 2.5px;
            }

            .filterButtonBadge {
                padding: 5px 8px;
                font-weight: bold;
            }
        }
    }
  }

  .filterSelects {
    display: flex;
    gap: 24px;

    .statusSelect {
      width: 150px;
    }

    .archivedSelect {
      width: 150px;
    }

    .centerSelect {
      width: 150px;
    }

    .hcpSelect {
      width: 150px;
    }

    .syncUpSelect {
      width: 150px;
    }

    .deviceModelSelect {
      width: 170px;
    }

    .productNameSelect {
      width: 200px;
    }

    .searchBar {
      background-color: white;
    }
  }
}
