﻿@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A.ttf) format('truetype');
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
}
#done {
  background: #00000085;
  color: white;
  padding: 20px;
  border-radius: 20px;
  margin-top: 15px;
  padding: 15px 40px;
  text-decoration: none;
}
.body-content {
  background: url('/images/richjemma.png') center / cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
#imageinput {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 200px;
  left: 50%;
  width: 320px;
  text-align: center;
  transform: translateX(-50%);
  padding: 15px 15px 0 15px;
}
#imageinput input,
#imageinput textarea {
  background: #00000085;
  border: none;
  margin: 5px 0;
  padding: 15px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  border-radius: 10px;
  color: white;
  font-size: 16px;
}
#comingsoon {
  border-radius: 10px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  background: #00000085;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s, background 0.2s;
  color: white;
  font-size: 10pt;
  overflow-y: auto;
  padding: 10px;
  font-size: 16pt;
  box-shadow: 2px 2px 10px #000;
}
#dropArea {
  /*    border: 2px dashed #ccc;*/
  border-radius: 10px;
  width: 100%;
  background: #00000085;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s, background 0.2s;
  color: white;
  font-size: 10pt;
  overflow-y: auto;
  padding: 10px;
}
#dropArea .camera {
  height: 50px;
  display: block;
  margin: auto;
}
#dropArea.highlight {
  border-color: #007BFF;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}
#dropText {
  font-size: 16px;
  margin-bottom: 10px;
}
#uploadsContainer {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Individual upload slots */
.uploadSlot {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  text-align: left;
  color: white;
  font-size: 14px;
  position: relative;
  transition: opacity 1s ease;
}
.uploadSlot .fileName {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Progress bar container and bar */
.uploadSlot .progressContainer {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}
.uploadSlot .progressBar {
  width: 0%;
  height: 100%;
  background: #007BFF;
  transition: width 0.2s ease;
}
/* Success tick styling */
.uploadSlot .successTick {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  color: #e8e8e8;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  background: #000000b5;
  padding: 0 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.uploadSlot .successTick.show {
  opacity: 1;
  transform: scale(1);
}
#uploadStatus {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  padding-bottom: 20px;
}
.logo {
  font-family: "Pacifico", cursive;
  font-size: 36pt;
  color: white;
  position: absolute;
  left: 30px;
  top: 30px;
  text-shadow: 3px 3px 10px #000;
  z-index: 1;
}
.logo small {
  font-size: 18pt;
  display: block;
  top: -20px;
  position: relative;
}
.image-holder {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fafafa;
  width: 90%;
  margin: auto;
  margin-bottom: 2rem;
}
.image-holder h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}
.image-holder p {
  margin: 0.5rem 0 1rem;
  color: #555;
}
.images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* space between images */
}
.images img {
  max-width: 150px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid #ccc;
  transition: transform 0.2s ease-in-out;
}
.images img:hover {
  transform: scale(1.05);
  border-color: #888;
}
#image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  /* important */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  z-index: 9999;
}
#image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  display: block;
}