/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f0f7;
	display: flex;
	flex-direction: column;
	min-height: 100vh; /* Ensure the body takes at least full height */
	margin: 0; /* Remove default margin */
}

/* Header styles */
header {
    background: #f7f0f7;
    color: white;
    padding: 20px 0;
    text-align: center;
}



/* Main section styles */
main {
    padding: 20px;
	flex: 1;
}
p {
	padding-top: 10px;
	padding-bottom: 10px;
}
ul {
	padding-left: 50px;
	padding-top: 0px;
	padding-bottom: 10px;
}
li {
	padding-top: 0px;
	padding-bottom: 10px;
}
section {
    margin: 20px 0;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: black;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
	max-width: 400px;
}

button {
    padding: 10px;
    background: #fe1aae;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	max-width: 400px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

button:hover {
    background: #2fc1ff;
}

/* Footer styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
	background: #333; /* Footer background color */
	color: white; /* Text color */
	text-align: center; /* Center the text */
	padding: 1rem; 
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

img {
	max-width: 100%; /* Make the image scale with the screen width */
	height: auto;    /* Maintain the aspect ratio */
}
@media (max-width: 600px) {
	body {
		font-size: 14px; /* Slightly smaller on smaller screens */
	}
}
@media (min-width: 601px) and (max-width: 1200px) {
	body {
		font-size: 16px; /* Medium size for medium screens */
	}
}
@media (min-width: 1201px) {
	body {
		font-size: 18px; /* Larger size for larger screens */
	}
}
.center-container {
    display: flex;
	flex-direction: column;
    justify-content: start;
	text-align: center;
	align-items: center;
}
.center-container2 {
    display: flex;
	flex-direction: column;
    justify-content: start;
	text-align: center;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
}
.checkbox-container {
    display: flex;
	flex-direction: row;
    justify-content: start;
	text-align: center;
	max-width: 600px;
	width: 100%;      
	margin: 0 auto;  
	padding: 0px;  
	gap: 10px;	
}
.inputCheckbox {
 
	transform: translateY(+25%);
}
.div-vertical-space {
    height: 50px;
}
.inputCentered {
	max-width: 600px;
	width: 100%;      
	margin: 0 auto;
	margin-bottom: 25px;
}
.DeleteButton {
	margin-top: 20px;
}
#rotatingFlavourLogo {
  transition: transform 0.2s ease-in-out;
}
.rotateX {
  transform: rotateX(180deg);
}
.rotateY {
  transform: rotateY(180deg);
}
.fit-content {
  display: inline-block;
}