.new-plm-button {
  background: none;
  color: white;
  border: none;
  padding: 8px;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background-color: #6058ff;
  border-radius: 10px;

  &:hover {
    background-color: #817bf2;
  }

  &:active {
    background-color: #2b22d8;
  }
}

.new-plm-tg-button {
  background: none;
  color: black;
  border: none;
  padding: 8px;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background-color: #b9b9b9;
  border-radius: 10px;

  &:hover {
    background-color: #e3e3e3;
  }

  &:active {
    background-color: #919090;
  }
}

.new-plm-open-button {
  background: none;
  color: white;
  border: none;
  padding: 8px;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background-color: #6058ff;
  border-radius: 10px;

  &:hover {
    background-color: #817bf2;
  }

  &:active {
    background-color: #2b22d8;
  }
}

.new-plm-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.new-plm-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  max-width: 400px; /* Could be more or less, depending on screen size */
  border-radius: 16px;
}

.new-plm-modal-text {
  text-align: center;
}

.new-plm-modal-title {
  font-weight: 700;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-end;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.new-plm-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 700px) {
  .new-plm-button {
    font-size: 12px;
  }
}
