@charset "UTF-8";

#custom-bot-container{
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
}

.bot-row{
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.bot-avatar{
	width: 50px;
	height: 50px;
	margin-right: 15px;
	animation: bot-float 3s ease-in-out infinite;
}

.bot-avatar img{
	width: 100%;
	height: auto;
	display: block;
}

@keyframes bot-float{
	0%, 100%{ transform: translateY(0); }
	50%{ transform: translateY(-8px);}
}

.bot-bubble{
	background: #f0f0f0;
	color: #333;
	padding: 12px 18px;
	border-radius: 18px;
	border-top-left-radius: 2px;
	max-width: 80%;
	animation: bot-fade-up 0.3s ease-out forwards;
}
@keyframes bot-fade-up{
	from{ opacity: 0; transform: translateY(5px); }
	to{ opacity: 1; transform: translateY(0); }
}

.custom-radio input[type="radio"]{
	display: none;
}
.custom-radio{
	display: block;
	background: #fff;
	border: 2px solid #135389;
	border-radius: 20px;
	padding: 12px;
	margin-bottom: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.custom-radio .radio-label{
	color: #135389;
	font-weight: bold;
}

.custom-radio.selected{
	background-color: #85e249;
	border-color: #85e249;
	border-radius: 18px;
	border-top-right-radius: 2px;
	margin-left: auto;
	width: fit-content;
	padding: 10px 18px;
}

.custom-radio.selected .radio-label{
	color: #111;
}
