.page {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  min-height: calc(100vh - 70px);

  padding: 20px 20px;

  background: rgba(249, 253, 255, 1);
}

.page-header {
  position: relative;
  display: flex;

  align-content: center;

  flex-direction: row;
  justify-content: space-between;

  margin: 20px 0;

  width: 100%;
}

.page-title {
  position: relative;

  margin: 20px 0;

  font-weight: 600;
  font-size: 24px;
}
.page-header .page-title {
  margin: 0;
}

.page-header-actions {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;

  flex-direction: row;
}

.page-header-action {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;

  flex-direction: row;

  min-width: 35px;
  height: 35px;

  padding: 0 15px;

  font-size: 12px;
  font-weight: 600;

  border-radius: 6px;

  color: black;
  background: white;

  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.page-header-action span {
  margin-top: 3px;
}

.page-header-action-dropdown-container {
  position: relative;
  display: flex;
}
.page-header-action-dropdown {
  position: absolute;
  display: none;
  z-index: 1;

  flex-direction: column;

  top: calc(100% + 5px);
  left: 0;

  width: 200px;

  padding: 10px 0;

  border-radius: 6px;

  background: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.page-header-action-dropdown-container.active .page-header-action-dropdown {
  display: flex;
}

.page-header-action-dropdown-item {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  width: 100%;

  padding: 8px 20px;

  font-size: 12px;
  font-weight: 600;

  color: black;

  transition: 0.3s all ease-out;
}
.page-header-action-dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.page-header-action-dropdown-item span {
  margin-top: 3px;
}
