/* Notebook Modal */
#notebook-modal {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notebook-modal-bg {
  position: absolute;
  left:0; top:0; right:0; bottom:0;
  background: rgba(30,18,36,0.70);
  z-index: 0;
}
.notebook-modal-content {
  position: relative;
  z-index: 1;
  background: #231c24;
  border: 2px solid #ad8a5c;
  border-radius: 15px;
  box-shadow: 0 6px 24px #000b;
  padding: 34px 28px 18px 28px;
  min-width: 350px;
  max-width: 95vw;
}
.notebook-modal-content h2 {
  margin-top:0;
  color: #ad8a5c;
  font-size: 1.5rem;
  text-align:center;
}
#notebook-textarea {
  width: 100%;
  min-height: 200px;
  background: #2d232c;
  color: #e9e6d7;
  border: 1.5px solid #ad8a5c;
  border-radius: 8px;
  font-size: 1.08rem;
  font-family: 'UnifrakturCook', cursive, serif;
  padding: 12px;
  margin-bottom: 0;
  resize: vertical;
  box-sizing: border-box;
}
#notebook-save-btn, #notebook-close-btn {
  background: #392b21;
  border: 1px solid #ad8a5c;
  color: #e9e6d7;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 1.09rem;
  margin-left: 10px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
#notebook-save-btn:hover, #notebook-close-btn:hover {
  background: #ad8a5c;
  color: #261a13;
  border-color: #c7b392;
}

/* Give Modal */
#give-modal {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.give-modal-bg {
  position: absolute; left:0; top:0; right:0; bottom:0;
  background: rgba(30,18,36,0.76);
  z-index: 0;
}
.give-modal-content {
  position: relative; z-index:1;
  background: #231c24;
  border: 2px solid #ad8a5c;
  border-radius: 15px;
  box-shadow: 0 6px 24px #000b;
  padding: 30px 32px 18px 32px;
  min-width: 320px;
  max-width: 95vw;
}
.give-modal-content h2 {
  margin-top:0;
  color: #ad8a5c;
  font-size: 1.35rem;
  text-align:center;
}
#give-modal-form label {
  display: block;
  margin-bottom: 12px;
  color: #c7b392;
  font-size: 1.07rem;
}
#give-user-input, #give-qty-input {
  font-family: inherit;
  font-size: 1.07rem;
  border-radius: 7px;
  border: 1px solid #ad8a5c;
  padding: 5px 10px;
  background: #232026;
  color: #e9e6d7;
  margin-left: 8px;
  min-width: 120px;
}
#give-modal-send-btn, #give-modal-close-btn {
  background: #392b21;
  border: 1px solid #ad8a5c;
  color: #e9e6d7;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 1.06rem;
  font-family: inherit;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
#give-modal-send-btn:hover, #give-modal-close-btn:hover {
  background: #ad8a5c;
  color: #261a13;
  border-color: #c7b392;
}

/* Drop Modal */
#drop-modal {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-modal-bg {
  position: absolute; left:0; top:0; right:0; bottom:0;
  background: rgba(30,18,36,0.76);
  z-index: 0;
}
.drop-modal-content {
  position: relative; z-index:1;
  background: #231c24;
  border: 2px solid #ad8a5c;
  border-radius: 15px;
  box-shadow: 0 6px 24px #000b;
  padding: 30px 32px 18px 32px;
  min-width: 320px;
  max-width: 95vw;
}
.drop-modal-content h2 {
  margin-top:0;
  color: #ad8a5c;
  font-size: 1.35rem;
  text-align:center;
}
#drop-modal-form label {
  display: block;
  margin-bottom: 12px;
  color: #c7b392;
  font-size: 1.07rem;
}
#drop-qty-input {
  font-family: inherit;
  font-size: 1.07rem;
  border-radius: 7px;
  border: 1px solid #ad8a5c;
  padding: 5px 10px;
  background: #232026;
  color: #e9e6d7;
  margin-left: 8px;
  min-width: 80px;
}
#drop-modal-send-btn, #drop-modal-close-btn {
  background: #392b21;
  border: 1px solid #ad8a5c;
  color: #e9e6d7;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 1.06rem;
  font-family: inherit;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
#drop-modal-send-btn:hover, #drop-modal-close-btn:hover {
  background: #ad8a5c;
  color: #261a13;
  border-color: #c7b392;
}

/* Admin Remove Modal */
#admin-remove-modal {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-remove-modal-bg {
  position: absolute; left:0; top:0; right:0; bottom:0;
  background: rgba(30,18,36,0.76);
  z-index: 0;
}
.admin-remove-modal-content {
  position: relative; z-index:1;
  background: #231c24;
  border: 2px solid #ad8a5c;
  border-radius: 15px;
  box-shadow: 0 6px 24px #000b;
  padding: 30px 32px 18px 32px;
  min-width: 320px;
  max-width: 95vw;
}
.admin-remove-modal-content h2 {
  margin-top:0;
  color: #ad8a5c;
  font-size: 1.35rem;
  text-align:center;
}
#admin-remove-qty-input {
  font-family: inherit;
  font-size: 1.07rem;
  border-radius: 7px;
  border: 1px solid #ad8a5c;
  padding: 5px 10px;
  background: #232026;
  color: #e9e6d7;
  margin-left: 8px;
  min-width: 80px;
}
#admin-remove-modal-send-btn, #admin-remove-modal-close-btn {
  background: #392b21;
  border: 1px solid #ad8a5c;
  color: #e9e6d7;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 1.06rem;
  font-family: inherit;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
#admin-remove-modal-send-btn:hover, #admin-remove-modal-close-btn:hover {
  background: #ad8a5c;
  color: #261a13;
  border-color: #c7b392;
}