:root {
  --sem-color-white: #ffffff;
  --sem-color-light-warm-gray: #edece6;
  --sem-color-medium-warm-gray: #b3b3ac;
  --sem-color-dark-warm-gray: #5c5b54;
  --sem-color-medium-dark-warm-gray: #7c7b76;
  --sem-color-black: #000000;
  --sem-color-medium-gray: #555555;
  --sem-color-aqua-blue: #00aabe;
  --sbm-color-orange: #EA5A12;
  --sbm-color-orange-dark: #AE2B00;
}

.cityscene-form {
  max-width: 720px;
  margin: 0 auto;
  font-family: inherit;
}
.cityscene-form label,
.cityscene-form .cityscene-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.cityscene-form input[type=text],
.cityscene-form input[type=email] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.cityscene-form input[type=text]:disabled,
.cityscene-form input[type=email]:disabled {
  background: #f3f3f3;
  color: #666;
}
.cityscene-form .cityscene-field {
  margin-bottom: 1.25rem;
}
.cityscene-form .cityscene-event {
  font-size: 1.25rem;
  padding: 0.85rem 1rem;
}
.cityscene-form .cityscene-error {
  background: #fdecea;
  border: 1px solid #d93025;
  color: #b1271b;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.cityscene-form .cityscene-submit {
  display: block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1.5rem;
}
.cityscene-form .cityscene-submit:hover:not(:disabled) {
  background: #333;
}
.cityscene-form .cityscene-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cityscene-form .cityscene-submit--email {
  margin-top: 1rem;
}

.cityscene-form--email {
  max-width: 480px;
}

.cityscene-intro {
  max-width: 720px;
  margin: 1.5rem auto 0.75rem;
  padding: 0.65rem 0.9rem;
  background: #f4f7fa;
  border-left: 3px solid #6c8aab;
  color: #44505c;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cityscene-images {
  margin-top: 1rem;
}

.cityscene-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
@media (max-width: 600px) {
  .cityscene-row {
    grid-template-columns: 1fr;
  }
}

.cityscene-row__notice {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #44505c;
  background: palegoldenrod;
  padding: 0.35rem 0.6rem;
  border-radius: 3px;
  align-self: start;
}
.cityscene-row__notice--unchanged {
  background: #edece6;
}

.cityscene-row__remove {
  margin-top: 0.5rem;
  align-self: start;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: #b1271b;
  border: 1px solid #d93025;
  border-radius: 4px;
  cursor: pointer;
}
.cityscene-row__remove:hover {
  background: #d93025;
  color: #fff;
}
.cityscene-row__remove[hidden] {
  display: none;
}

.cityscene-dropzone {
  position: relative;
  min-height: 180px;
  border: 2px dashed #c5cdd6;
  border-radius: 6px;
  background: #f4f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.cityscene-dropzone:hover, .cityscene-dropzone.is-dragover {
  border-color: #6c8aab;
  background: #eaf1f8;
}
.cityscene-dropzone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.cityscene-dropzone__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  gap: 0.35rem;
  color: #6b7785;
  pointer-events: none;
}
.cityscene-dropzone__icon {
  display: block;
  width: 36px;
  height: 36px;
  background: #c5cdd6;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM8.5 13.5l2.5 3 3.5-4.5 4.5 6H5l3.5-4.5z' fill='black'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM8.5 13.5l2.5 3 3.5-4.5 4.5 6H5l3.5-4.5z' fill='black'/></svg>");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.cityscene-dropzone__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #44505c;
}
.cityscene-dropzone__hint {
  font-size: 0.8rem;
  color: #8693a0;
}
.cityscene-dropzone__preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cityscene-dropzone__preview[hidden] {
  display: none;
}
.cityscene-dropzone.has-preview {
  min-height: 0;
  height: 300px;
  padding: 8px;
  box-sizing: border-box;
  border-style: solid;
  cursor: default;
}
.cityscene-dropzone.has-preview input[type=file] {
  display: none;
}
.cityscene-dropzone.has-preview .cityscene-dropzone__placeholder {
  display: none;
}
.cityscene-dropzone__error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(217, 48, 37, 0.92);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  text-align: center;
}

.cityscene-captions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

.cityscene-message {
  max-width: 720px;
  margin: 1rem auto;
  padding: 1.25rem 1.5rem;
  background: #f0f7ee;
  border: 1px solid #bcd9b0;
  color: #2f5a26;
  border-radius: 4px;
  font-size: 1.05rem;
  text-align: center;
}

.cityscene-notice {
  background: #eaf3fb;
  border: 1px solid #a7c8e4;
  color: #1a4c73;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.cityscene-admin-list {
  max-width: 720px;
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cityscene-admin-add-button {
  display: inline-block;
  align-self: flex-start;
  padding: 0.55rem 1rem;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.cityscene-admin-add-button:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.cityscene-admin-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #d7dde4;
  border-radius: 4px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.cityscene-admin-card:hover {
  border-color: #6c8aab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.cityscene-admin-card__link {
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.cityscene-admin-card__link:hover {
  text-decoration: none;
  color: inherit;
}
.cityscene-admin-card__date {
  font-size: 0.85rem;
  color: #6b7785;
  margin-bottom: 0.15rem;
}
.cityscene-admin-card__event {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.cityscene-admin-card__email {
  font-size: 0.9rem;
  color: #44505c;
}
.cityscene-admin-card__delete {
  margin: 0;
  flex-shrink: 0;
}
.cityscene-admin-card__delete-button {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: #b1271b;
  border: 1px solid #d93025;
  border-radius: 4px;
  cursor: pointer;
}
.cityscene-admin-card__delete-button:hover {
  background: #d93025;
  color: #fff;
}

.cityscene-download-button {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0.75rem auto 0;
  padding: 0.7rem 1.2rem;
  background: #f4f7fa;
  border: 1px solid #c5cdd6;
  border-radius: 4px;
  color: #111;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.cityscene-download-button:hover {
  background: #eaf1f8;
  text-decoration: none;
}

/*# sourceMappingURL=cityscene.css.map */
