#message {
    position: relative;
    top: -3px;
    background: red;
    color: white;
    padding: 1px 5px;
    font-weight: bold;
    border-radius: 2px;
    display: none;
	clear: both;
}

.upload-container {
  border: 1px solid var(--main-200);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background-color: var(--main-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    cursor: pointer;
}

.upload-label:hover, .upload-label.dragover {
    background-color: var(--main-100);
	border-radius: 8px;
}

.file-input {
    display: none; 
}

.upload-content {
    text-align: center;
    color: #4a5568;
}

.upload-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
	color: var(--main-600);
}

.upload-content p {
    margin: 0;
    font-size: 1rem;
}

.upload-content span {
    font-size: 0.8rem;
    color: #a0aec0;
}