/* New Glubler Modal */
.new-glubler-modal-overlay {
  background: transparent !important;
  transition: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1 !important;
  visibility: visible;
}

.new-glubler-modal-overlay .new-glubler-form {
  position: fixed;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 178px;
  height: 108px;
  background: #ffcf25;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
}

.new-glubler-modal-overlay.active .new-glubler-form {
  transform: none !important;
  opacity: 1 !important;
}

.new-glubler-form {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Hide original title element */
.new-glubler-form h3 {
  display: none !important;
  margin: 0 0 16px;
  color: #454554;
}

/* Input styling */
.new-glubler-title-input {
  width: 66%;
  padding: 6px;
  border: none;
  border-radius: 5px;
  margin-bottom: 8px;
  margin-top: -3px;
  text-align: center;
  background: rgba(245, 222, 36, 0.9);
  color: #454554;
  font-weight: bold;
  font-size: 13px;
  outline: none;
  transition: background-color 0.3s ease;
}

.new-glubler-title-input:focus {
  background: white;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #666;
  font-size: 13px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #ffe725;
}

/* Buttons layout */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
  align-items: center;
  margin-top: 5px;
  justify-content: flex-end;
  margin-top: 20px;
}

.create-btn,
.cancel-btn {
  background: #fff !important;
  color: #787578 !important;
  width: 104px;
  height: 19px;
  border: none;
  border-radius: 999px !important;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px !important;
  line-height: 19px;
  transition: all 0.3s ease;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-btn {
  margin: -8px 0 0 0;
}

.create-btn:hover {
  background: #c7a3a3 !important;
  color: #fff !important;
  transform: scale(1.05);
}

.cancel-btn {
  background: #b3b3b3 !important;
  color: #fff !important;
  margin: 3px 0 0 0;
}

.cancel-btn:hover {
  background: #c7a3a3 !important;
  color: #fff !important;
  transform: scale(1.05);
}

.color-options {
  display: none !important;
}
