/*MIND*/
#minddiv {
	display: flex;
	flex-direction: row;
	align-items: flex-start; /* Align items to the start (top) of the container */
	gap: 10px; /* Add space between the textarea and the button if needed */
}

#mindinput {
	width: 40%; /* Adjust width to your preference, or use a specific width */
	padding: 10px;
	box-sizing: border-box; /* Ensure padding and border are included in width */
	margin: 0; /* Remove margin to ensure alignment */
	min-height: 40px;
	resize: vertical;
}

#mindbutton {
    color: #000000;
    border-radius: 5px;
    background-color: rgb(255, 0, 0);
	padding: 17px 20px;
	margin: 0; /* Remove margin to ensure alignment */
}

/* for mobile */
@media (max-width: 768px) {
	#mindinput {
		width: 60%;
	}
	#mindbutton {
		max-width: 50%;
		height: auto; /*krasser fix, basically limitiert die breite auf 50%, kann es aber downscalen damit es auf hoffentlich 99% aller geräte funktioniert*/
	}
}