/* Customized CSS styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	width: 99%;
	background: linear-gradient(60deg,
	#f7f7f7 0%,
	#f7f7f7 60%,
	#5b96e5 60%,
	#5b96e5 100%);
	background-attachment: fixed;
}

.logo {
	margin:20px;
}

.container {
	min-width: 320px;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

h1 {
	color: #333;
	font-size:30px;
}

table {
	width: 100%;
}

/* General assertions */

.emoji {
	font-size: 20px;
	min-width: 30px;
	max-width: 30px;
}

.feedback-text-left {
	font-style: italic;
	font-size: clamp(0.75rem, 0.5673rem + 0.6154vw, 0.875rem);
	min-width: 60px;
	max-width: 60px;
}

.feedback-text-right {
	font-style: italic;
	font-size: clamp(0.75rem, 0.5673rem + 0.6154vw, 0.875rem);
	min-width: 40px;
	max-width: 40px;
}

.room-button {
	background: #5b96e5;
	color: white;
	border-color: #5b96e5;
	border-radius: 5px;
	height: 75px;
	width: 100%;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	appearance: none;
	margin-bottom: 20px;
}

.submit-button {
	background: #5b96e5;
	color: white;
	border-color: #5b96e5;
	border-radius: 5px;
	height: 50px;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	font-weight: bold;
	appearance: none;
}

/* Specialized assertions */

/* Addition for v2 update */

.feedback {
	background-image: linear-gradient(to right, #FF6F6F , white, #8FFFC1);
	height: 35px;
	width: 100%;
	border-radius: 20px;
}

.feeling {
	background-image: linear-gradient(to right, #A1A1A1 , white, #A1A1A1);
	height: 35px;
	width: 100%;
	border-radius: 20px;
}

.question-text {
	padding-bottom: 10px;
}

table.feedbackLine {
	padding-bottom: 20px;
}

table.choicesLine {
	margin-left:-5px;
}

textarea {
	width: 100%;
	height: 100px;
	margin-left: -4px;
}

input[type=radio] {
    border: 0px;
    width: 100%;
    height: 20px;
	accent-color:#5b96e5;
}

 /* Mobile custom CSS */


 @media only screen and (min-device-width: 300px) and (max-device-width: 900px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) {
	.feedback-text-left {
		min-width: 50px;
		max-width: 50px;
	 }
 
	 .feedback-text-right {
		min-width: 40px;
		max-width: 40px;
	 }	

	table.choicesLine {
		margin-left:-1px;
	}
}

 @media only screen and (min-device-width: 300px) and (max-device-width: 900px) and (-webkit-min-device-pixel-ratio: 1) and (orientation: landscape) {
   input[type=radio] {
		margin-left:20px;
   }

   .feedback-text-left {
		min-width: 60px;
		max-width: 60px;
	}

	.feedback-text-right {
		min-width: 60px;
		max-width: 60px;
	}	

	table.choicesLine {
		margin-left:1px;
	}
	
} 