/* Creator pages intentionally use the same simple, old-school style as the rest of Hackcord. */
body.hc-creator-page {
  background-image: url('/image/dynamicbg.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.hc-creator-container {
  max-width: 860px;
  padding-top: 42px;
  padding-bottom: 70px;
}

.hc-creator-jumbo {
  background: rgba(3, 12, 3, .78);
  margin-bottom: 28px;
}

.hc-creator-jumbo h1 {
  margin-top: 0;
}

.hc-creator-page .panel {
  margin-bottom: 22px;
}

.hc-creator-page .panel-title {
  font-size: 18px;
}

.hc-creator-page .panel-body {
  color: var(--hc-soft, #c9e8c4);
}

.hc-creator-page .panel-body strong,
.hc-creator-page .panel-body label {
  color: var(--hc-white, #fff);
}

.hc-small-note {
  font-size: 12px;
  opacity: .72;
}

.hc-simple-list {
  padding-left: 22px;
  margin-bottom: 16px;
}

.hc-simple-list li {
  margin-bottom: 7px;
}

.hc-logo-box {
  height: 150px;
  border: 1px solid rgba(57, 255, 20, .20);
  background: rgba(0, 0, 0, .48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 8px 0 10px;
}

.hc-logo-box img {
  display: block;
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.hc-logo-box-wide img {
  width: 100%;
}

.hc-final-apply {
  margin: 34px 0 50px;
}

/* Application page */
.hc-app-container {
  max-width: 820px;
  padding-top: 36px;
  padding-bottom: 70px;
}

.hc-app-back {
  display: inline-block;
  margin-bottom: 18px;
  font-family: monospace;
}

.hc-app-heading {
  margin-bottom: 24px;
}

.hc-app-heading h1 {
  margin-bottom: 8px;
}

.hc-app-user {
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(57, 255, 20, .24);
  background: rgba(2, 13, 2, .72);
  font-family: monospace;
}

.hc-app-user strong {
  color: var(--hc-green, #39ff14);
}

.hc-creator-page .form-control {
  color: var(--hc-white, #fff);
  background: rgba(1, 9, 1, .88);
  border: 1px solid rgba(57, 255, 20, .30);
  border-radius: 0;
  box-shadow: none;
}

.hc-creator-page .form-control:focus {
  border-color: var(--hc-green, #39ff14);
  box-shadow: 0 0 10px rgba(57, 255, 20, .12);
}

.hc-creator-page select.form-control option {
  background: #071007;
  color: #fff;
}

.hc-creator-page textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.hc-creator-page .help-block {
  color: rgba(205, 235, 201, .65);
  font-size: 12px;
}

.hc-app-section-title {
  margin: 28px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(57, 255, 20, .18);
  color: var(--hc-green, #39ff14);
  font: 700 13px monospace;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hc-app-warning {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 176, 32, .55);
  background: rgba(62, 41, 0, .36);
  color: #ffe0a0;
}

.hc-app-check {
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
  color: var(--hc-soft, #c9e8c4) !important;
}

.hc-app-check input {
  margin-right: 7px;
}

.hc-app-submit {
  margin-top: 20px;
}

.hc-app-status {
  padding: 18px;
  border: 1px solid rgba(57, 255, 20, .28);
  background: rgba(2, 13, 2, .75);
}

/* Private review page */
.hc-app-review-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 15px 80px;
}

.hc-review-card {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(57, 255, 20, .24);
  background: rgba(2, 13, 2, .82);
}

.hc-review-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.hc-review-top h2 {
  margin-top: 0;
  font-size: 20px;
}

.hc-review-tag {
  color: var(--hc-green, #39ff14);
  font: 700 11px monospace;
  text-transform: uppercase;
}

.hc-review-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hc-review-details strong,
.hc-review-idea strong {
  display: block;
  color: var(--hc-green, #39ff14);
  font-size: 10px;
  letter-spacing: .8px;
}

.hc-review-idea {
  white-space: pre-wrap;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(57, 255, 20, .12);
  background: rgba(0, 0, 0, .28);
}

.hc-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.hc-review-actions form {
  display: inline;
}

.hc-review-actions button {
  background: rgba(7, 18, 7, .96);
  border: 1px solid rgba(57, 255, 20, .35);
  color: var(--hc-green, #39ff14);
  font-family: monospace;
  padding: 6px 10px;
}

.hc-review-actions button:disabled {
  opacity: .4;
}

@media (max-width: 767px) {
  .hc-creator-container,
  .hc-app-container {
    padding-top: 22px;
  }

  .hc-logo-box {
    height: 135px;
  }

  .hc-review-details {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
