* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: rgb(9, 6, 35);
  color: #fff;
  font-family: "Courier New", Courier, monospace;
}

.page-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
}
.page-header h1 {
  margin: 0;
  margin-right: 10px;
}
.page-header p {
  margin: 0;
}

@media screen and (min-width: 500px) {
  .page-header {
    padding: 45px;
  }
}
a {
  color: rgb(0, 220, 130);
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

form .form-element {
  min-width: 120px;
  width: 100%;
  background-color: rgb(0, 220, 130);
  border-radius: 5px;
  color: rgb(9, 6, 35);
  padding: 10px;
  font-size: 16px;
  border: none;
}
form input:disabled {
  opacity: 0.5;
}

section.content {
  margin: 15px 30px;
}

section.block {
  padding: 15px 30px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 500px) {
  section.content {
    margin: 30px 30px;
  }
  section.block {
    padding: 30px 60px;
  }
}
button.ui-button {
  min-width: 90px;
  border-radius: 5px;
  color: rgb(9, 6, 35);
  padding: 10px;
  font-size: 16px;
  border: none;
}
button.ui-button:active {
  transform: translateY(1px) scale(0.98);
}
button.ui-button.green {
  background-color: rgb(0, 220, 130);
}
button.ui-button.red {
  background-color: rgb(223, 40, 40);
  color: #fff;
}
button.ui-button:disabled {
  opacity: 0.5;
}
button.ui-button:disabled:active {
  transform: initial;
}

.upload-form,
.login-form {
  align-items: flex-end;
}
.upload-form.flex-row div,
.login-form.flex-row div {
  margin: 5px;
}
.upload-form.flex-row div input::file-selector-button,
.login-form.flex-row div input::file-selector-button {
  border: none;
  border-radius: 5px;
  overflow: hidden;
  background: none;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px;
  color: #ebebeb;
}

.upload-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0px 30px;
  opacity: 0;
  transition: padding 0.3s ease-in-out, opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  max-height: 0;
}
.upload-info.active {
  padding: 0px 30px 15px 30px;
  opacity: 1;
  max-height: 100px;
}
.upload-info label {
  margin: 5px;
}
.upload-info progress {
  -webkit-appearance: none;
  appearance: none;
  margin: 5px;
  width: calc(100% - 10px);
  max-width: 300px;
}
.upload-info progress[value]::-webkit-progress-bar {
  border-radius: 10em;
  background: lightgray;
}
.upload-info progress[value]::-webkit-progress-value {
  border-radius: 10em;
  background: rgb(0, 220, 130);
}

@media screen and (min-width: 500px) {
  .upload-info {
    padding: 0px 15px;
  }
  .upload-info.active {
    padding: 0px 60px 30px 60px;
  }
}
.img-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.img-container a {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  aspect-ratio: 1/1;
}
.img-container a img {
  width: 100%;
  max-width: 250px;
  object-fit: cover;
  overflow: hidden;
}
.img-container a video {
  width: 100%;
  max-width: 250px;
}

.update-form-section h2 {
  margin: 0;
  margin-bottom: 15px;
}
.update-form-section h3 {
  margin: 0;
  margin-bottom: 15px;
}
.update-form-section .update-form {
  display: flex;
  flex-direction: column;
}
.update-form-section .update-form .flex-column {
  margin: 10px 0;
}
.update-form-section .update-form .flex-row > div {
  display: flex;
  flex-direction: column;
  margin: 10px 10px 0 0;
  align-items: flex-start;
}
.update-form-section .update-form .flex-row > div input[type=checkbox] {
  width: 25px;
  height: 25px;
}
.update-form-section .update-form .submit-container {
  margin: 20px 0;
}

.img-detail-container {
  display: flex;
  flex-wrap: wrap;
}
.img-detail-container div {
  margin: 10px 10px 0 0;
  max-width: 300px;
}
.img-detail-container div object, .img-detail-container div img, .img-detail-container div video {
  width: 100%;
  max-width: 300px;
}

.danger-container {
  display: flex;
  flex-direction: row;
}
.danger-container p {
  margin: 16px;
}
.danger-container p.success {
  color: rgb(220, 205, 0);
}
.danger-container p.error {
  color: rgb(223, 40, 40);
}

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