/* Delete and Rename Popups */
.delete-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 257px;
  height: 160px;
  background: #ffcf25;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 26px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1002;
}

/* Duplicate Glubler Popup */
.duplicate-glubler-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 257px;
  height: 160px;
  background: #ffcf25;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 26px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1002;
}

.duplicate-glubler-popup h2 {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 0;
  text-align: center;
}

.duplicate-glubler-popup p {
  color: #666666;
  text-align: center;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.4;
}

.duplicate-glubler-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
  align-items: center;
}

.duplicate-glubler-popup-button {
  width: 104px;
  height: 19px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 19px;
  text-transform: uppercase;
  font-size: 11px;
  background-color: rgba(245, 221, 36, 0.896);
  color: #90773c;
  transition: all 0.3s ease;
}

.duplicate-glubler-popup-button:hover {
  color: white;
  transform: scale(1.05);
}

.duplicate-glubler-popup-button.ok-button {
  background-color: white;
  color: #787578;
}

.duplicate-glubler-popup-button.ok-button:hover {
  background-color: #c7a3a3;
  color: #ffffff;
}

.delete-popup h2 {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 0;
  text-align: center;
}

.delete-popup p {
  color: #666666;
  text-align: center;
  margin: 12px 0;
  font-size: 14px;
}

.delete-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
  align-items: center;
}

.delete-popup-button {
  width: 104px;
  height: 19px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 19px;
  text-transform: uppercase;
  font-size: 11px;
  background-color: rgba(245, 221, 36, 0.896);
  color: #90773c;
  transition: all 0.3s ease;
  outline: none;
}

.delete-popup-button:focus {
  outline: none;
}

.delete-popup-button:hover {
  color: white;
  transform: scale(1.05);
}

.rename-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 136px;
  background: #ffcf25;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0px 26px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1002;
}

.rename-popup h2 {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 0;
  text-align: center;
}

.rename-popup input {
  width: 99%;
  padding: 8px;
  font-size: 15px;
  margin: 16px 0 24px;
  border-radius: 6px;
  border: none;
  text-align: center;
  color: #666666;
}

.rename-popup input:focus {
  outline: 2px solid rgba(245, 222, 36, 0.9);
}

.rename-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -5px;
  width: 100%;
  align-items: center;
}

.rename-popup-button {
  width: 104px;
  height: 19px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 19px;
  text-transform: uppercase;
  font-size: 11px;
  background-color: rgba(245, 221, 36, 0.896);
  color: #90773c;
  transition: all 0.3s ease;
  outline: none;
}

.rename-popup-button:focus {
  outline: none;
}

.rename-popup-button:hover {
  color: white;
  transform: scale(1.05);
}

.delete-button {
  background-color: white;
  color: #787578;
}

.cancel-button {
  background-color: #b3b3b3;
  color: white;
}

.delete-button:hover,
.cancel-button:hover {
  background-color: #c7a3a3;
  color: #ffffff;
}

.rename-popup-button.confirm-rename {
  background-color: white;
  color: #787578;
}

.rename-popup-button.cancel-rename {
  background-color: #b3b3b3;
  color: white;
}

.rename-popup-button.confirm-rename:hover,
.rename-popup-button.cancel-rename:hover {
  background-color: #c7a3a3;
  color: #ffffff;
}
