body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	color: #333;
	display: flex;
	min-height: 100vh;
}

/* Left Tabs */
.tabs {
	position: fixed;
	top: 0;
	left: 0;
	width: 200px;
	height: 100%;
	background-color: #fff;
	color: #333;
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-right: 1px solid #ddd;
}

.tab {
	padding: 15px 0;
	width: 100%;
	text-align: center;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s ease, color 0.2s ease;
	border-bottom: 1px solid #f0f0f0;
}

.tab:hover {
	background-color: #f4f4f4;
	transform: translateX(5px);
	color: #007BFF;
}

.tab:last-child {
	border-bottom: none;
}

.tab:focus {
	outline: none;
}

.logo{
	text-align: center;
	padding-bottom: 20px;
}

.credit{
	position: absolute;
	text-align: left;
	padding-left: 15px;
	padding-right: 15px;
	bottom: 50px;
	font-size: 12px;
	color: #333;
	
}

/* Container for main content */
.container {
	margin-left: 270px;
	width: calc(100% - 270px);
	padding: 40px;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 80px;
	flex: 1;
}

h1 {
	color: #444;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
	text-align: center;
}

p {
	font-size: 18px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 30px;
}

hr {
	margin: 40px 0;
	border: 1px solid #e0e0e0;
}

h2 {
	font-size: 28px;
	color: #444;
	font-weight: 600;
	margin-top: 20px;
}


ul {
	padding-left: 20px;
	margin: 20px 0;
	color: #444; 
	list-style-type: square;
}

ol {
	font-size: 18px;
	line-height: 1.4;
	padding-left: 20px;
	margin: 20px 0;
	color: #444; 
}

ol li {
	margin-bottom: 10px; 
}


img {
	max-width: 80%;
}

#textInput {
	width: 900px;   
	height: 200px;  
	font-size: 18px;
}

#textInput::placeholder {
	font-size: 18px; 
   
  }

.image-container {
	display: flex;
	justify-content: center;
}


#model {
	width: 400px;   
	height: 25px; 
	font-size: 15px; 
	margin-top: 10px;
}
#model::placeholder {
	font-size: 15px;        
	text-align: left;       
}

/* Responsive Design */
@media (max-width: 768px) {
	.tabs {
		width: 200px;
		padding-top: 30px;
	}

	.container {
		margin-left: 220px;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.tabs {
		display: none;
	}

	.container {
		margin-left: 0;
		padding: 15px;
	}
}

/* Feedback Form Styles */
 
 .form-section {
	margin-bottom: 30px;
 }
 
 .form-section h3 {
	font-size: 18px;
	color: #444;
	margin-bottom: 15px;
 }
 
 .rating-options, .feature-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
 }
 
 .rating-options label, .feature-options label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
 }
 
 .rating-options input[type="radio"],
 .feature-options input[type="checkbox"] {
	width: 18px;
	height: 18px;
 }
 
 textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: 'Roboto', sans-serif;
	resize: vertical;
 }
 
 .submit-button {
	background-color: #0366d6;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
 }
 
 .submit-button:hover {
	background-color: #024ea1;
 }
 
 /* Responsive adjustments */
 @media (max-width: 768px) {
	.form-container {
	   padding: 20px;
	}
 }

 .analyze-button {
	width: 100px;
	height: 28px;
	font-size: 14px;
	background-color: #ec3324;
	color: white;
	border: none;
	border-radius: 10px;
	margin-left: 20px;
 }

 .analyze-button:hover {
	background-color: #9f2217;
 }
 
 .analyze-button:focus {
	outline: none;
 }

 .analyze-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
 }