.ja-launch-btn {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9998;
  background: #FFCD03;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  min-height: 48px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.ja-launch-btn:hover {
  background: #CC9A00;
  color: #fefefe;
}

.ja-jobbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9997;
  background: #4a4a4a;
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  padding-top: calc(10px + env(safe-area-inset-top));
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ja-jobbar-info {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ja-jobbar-job {
  font-weight: bold;
  color: #FFCD03;
}

.ja-jobbar-sep {
  margin: 0 6px;
  opacity: 0.6;
}

.ja-jobbar-end {
  flex-shrink: 0;
  border: 1px solid #fefefe;
  background: transparent;
  color: #fefefe;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

.ja-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

body.ja-modal-open {
  overflow: hidden;
}

.ja-modal {
  background: #fefefe;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  font-family: inherit;
  box-sizing: border-box;
}

.ja-switch-link {
  display: block;
  background: none;
  border: none;
  color: #4a4a4a;
  text-decoration: underline;
  font-size: 13px;
  padding: 0;
  margin: -6px 0 14px;
  cursor: pointer;
}

.ja-title {
  margin: 0 0 18px;
  font-size: 20px;
  color: #4a4a4a;
  border-left: 4px solid #FFCD03;
  padding-left: 10px;
}

.ja-field {
  margin-bottom: 14px;
}

.ja-field label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #727272;
  margin-bottom: 4px;
}

.ja-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #dedede;
  border-radius: 4px;
  font-size: 16px;
  min-height: 44px;
  color: #4a4a4a;
}

.ja-field input[readonly] {
  background: #f4f4f4;
  color: #9b9b9b;
}

.ja-status {
  min-height: 18px;
  font-size: 13px;
  margin-bottom: 10px;
}

.ja-status-error { color: #bf4543; }
.ja-status-success { color: #2e8b30; }

.ja-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ja-btn {
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  min-height: 44px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.ja-btn-cancel {
  background: #ededed;
  color: #4a4a4a;
}

.ja-btn-submit {
  background: #FFCD03;
  color: #4a4a4a;
}

.ja-btn-submit:hover {
  background: #CC9A00;
  color: #fefefe;
}
