@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&display=swap');
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* Place video behind content */
}

body {
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #283040;
}
#commentBox,#duplicateBox {
  display: none;
}
#userInfo, #selectionTemplate, #submission{
  display: none;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff; /* White background for content */
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Logo styling */
.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 300px; /* Adjust as needed */
}


.white-logo {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px; /* Adjust as needed */
}


/* Form styling */
#login-form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 250px; /* Adjust as needed */
  margin: 10px;
  font-family: 'Rajdhani';
  font-size: medium;
}

button[type="submit"] {
  font-family: 'Rajdhani', sans-serif;
  background-color: #007bff; /* Blue background */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.button{
  font-family: 'Rajdhani', sans-serif;
  background-color: #007bff; /* Blue background */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 15px;
 }

button[disabled] {
  background-color: #cccccc;
  cursor: default;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  min-width: 90vw;
  max-width: 90vw;
  min-height: 60vh;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.category {
  background-color: #f0f0f0;
  padding: 5px;
  text-align: center;
  font-weight: bold;
  border: 3px solid rgba(0, 0, 255, 0);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  height: 85px;
}

.category:nth-child(5) {
  background-color: #f55f5f;
}

.category:nth-child(4) {
  background-color: #fcd04c;
}

.category:nth-child(3) {
  background-color: #eaea53;
}

.category:nth-child(2) {
  background-color: #96f596;
}

.category:nth-child(1) {
  background-color: #3eef41;
}


.square-container {
  display: flex; /* Arrange squares in a row */
  flex-wrap: wrap; /* Allow squares to wrap to new lines */
  gap: 10px; /* Gap between squares */
  min-width: 50vw;
  width: fit-content; /* Container shrinks to fit squares */
  margin: 0 auto;
  min-height: 100px;
  background-color: #c6c6c6;
  border-radius: 10px; /* Add rounded corners */
  align-content: center;
  justify-content: center;
}

.drag-over {
  border: dashed 3px rgb(0, 0, 0);
}

.item {
  height: 75px;
  width: 75px;
  background-color: #ffffff;
  margin: 5px;

}

.commentImage {
  height: 125px;
  width: 125px;
  background-color: #ffffff;
  margin: 5px;

}

.hide {
  display: none;
}

.box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

button[type="text"] {
  font-family: 'Rajdhani', sans-serif;
  background-color: #007bff; /* Blue background */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin: 20px;
}

.button-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.paragraphs{
  text-align: center;
  font-size: x-large;
  color: white;
  font-weight: bold;
}

.tableCSS {
  min-width: 60vw;
  min-height: 60vh;
  text-align: center;
  background-color: rgb(228, 228, 228);
}

table {
  border-collapse: collapse;
}

td, th {
  border: 1px solid black;
}

tr td:first-child {
  border-top: none;
  border-bottom: none;
}

.potentialDrop {
  height: 20px;
  width: 100px;
}

.key-paragraph{
  text-align: center;
  font-size: medium;
  color: white;
  font-weight: bold;
  margin: 0px;
}

#bottom{
  width: 90vw;
  display: flex;
  justify-content: space-around;
}

.image-label{
  text-align: center;
  font-size: small;
}

.image-div{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 75px;
}

.comment-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
  background-color: #283040;
  border: 8px solid rgb(255 255 255);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 30vw;
}

