
body {
	
  display: flex;
  justify-content: center;
  align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
    background-color: #ebe5e1;
    overflow: hidden;
	color: #322d49;
}


#login-area {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#login-area h2 {
  margin-bottom: 20px;
}

#login-area form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#login-area label {
  margin: 10px 0 5px;
}

#login-area input {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
}

#login-area button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

#login-area button:hover {
  background-color: #0056b3;
}





/* Zentrale Fläche nur optisch – sie soll keine Mausereignisse abfangen */
#selection-area {
    position: absolute;
    width: 80%;
    height: 50vh;
    border: 2px dotted #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	vertical-align:middle;
}
#selection-area.dragdrop {
	pointer-events: none;
	}

#selection-area.highlight {
  border: 2px dashed #000;
}

#selection-area p {
	margin-top: calc( 15% - 2em);
	padding: 0;
	text-align:center;
	font-family: 'Brilliant Signature', sans-serif;
	font-size: 5em;
	color: #000;
	}

.image {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    cursor: grab;
    position: absolute;
    user-select: none;
}


#trash-bin {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url("trash_icon.svg") no-repeat center center;
  background-size: contain;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
  background-size: 50%;
  margin-bottom: 93px;
  background-color: #4d364d;
}

#trash-bin.active {
  transform: translateX(-50%) scale(1.2);
  background-color: rosybrown;
}
