.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-overlay button:focus, .modal-overlay button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px #004a7b;
}
.modal-overlay .modal-header button:focus, .modal-overlay .modal-header button:focus-visible {
  outline: none;
  box-shadow: none;
}

.modal-content {
  background: #2d2d2d;
  border-radius: 5px;
  width: 320px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 8px 10px;
  background-color: #222;
  border: 1px solid #444;
  color: #eee;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
}
.modal-content input[type=text],
.modal-content input[type=number],
.modal-content input[type=email],
.modal-content input[type=password],
.modal-content select {
  height: 32px;
}
.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #004a7b;
  box-shadow: 0 0 5px rgba(0, 67, 112, 0.5);
}

.modal-header {
  cursor: move;
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  padding: 8px 20px;
}
.modal-header h3 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
  font-weight: normal;
  color: #eee;
  letter-spacing: 0.5px;
  margin: 0;
}
.modal-header button.modal-close {
  height: 28px !important;
}

.modal-body {
  padding: 0 20px;
  overflow-x: auto;
}
.modal-body .form-group label {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 2px;
  padding: 2px 0px;
}

.modal-footer {
  cursor: move;
  padding: 10px 20px;
  border-top: 1px solid #444;
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  /* Hapus paksaan flex: 1 agar tombol tidak terlalu panjang */
}
.modal-footer > button {
  flex: 0 0 auto;
  min-width: 70px;
}
.modal-footer button.modal-footer-btn {
  min-width: 70px;
}
.modal-footer button.square-button {
  width: 32px !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

#save-song-project-select {
  width: 100%;
  box-sizing: border-box;
}

#prompt-message {
  padding: 0 0 5px 0;
}

#confirm-modal .modal-content,
#prompt-modal .modal-content,
#alert-modal .modal-content {
  width: 320px;
}

.modal-sm {
  width: 240px;
}

.modal-md {
  width: 480px;
}

.modal-wide {
  width: calc(100vw - 32px);
  max-width: 1000px;
}

.modal-lg {
  width: 720px;
}

.modal-xl {
  width: 940px;
}

.modal-subtitle {
  font-size: 11px;
  margin-bottom: 10px;
  margin-top: 5px;
  color: #aaa;
}

.form-group {
  margin-bottom: 10px;
}

.modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-right: 10px !important;
}

.modal-header h3 {
  text-align: left !important;
  margin: 0 !important;
  flex: 1 !important;
}

.modal-close {
  background: none !important;
  border: none !important;
  color: #888 !important;
  cursor: pointer !important;
  padding: 4px !important;
  display: flex !important;
}

.modal-close:hover {
  color: #fff !important;
}/*# sourceMappingURL=modal.css.map */