body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    width: 70vw;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 4fr; 
}

.sidebar {
	position: relative;
	display: inline-block;
}

.sidebar img {
	width: 20vw;
	height: auto;
	display: block;
	border-bottom: 2px dotted;
	padding-bottom: 30;
	margin-bottom: 10;
	margin-top: 25%;
}

h1 {
    text-align: center;
    color: #333;
}

.chat-box {
    height: 60vh;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fafafa;
    border-radius: 5px;
}

.message {
    margin: 10px 0;
}

.user {
    text-align: right;
    color: #007BFF;
}

.coach {
    text-align: left;
    color: #28a745;
}

form {
    display: flex;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

button {
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 0 5px 5px 0;:wq
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.message.coach.loading {
	font-style: italic;
	color: #888;
	animation: fadeInOut 3s ease-in-out infinite;
}

.message.coach h1,
.message.coach h2,
.message.coach h3 {
    margin: 5px 0;
    color: #28a745;
    font-size: 1.1rem;
}

.message.coach ul,
.message.coach ol {
    margin: 5px 0 5px 20px;
    color: #28a745;
    font-size: 1rem;
}

.message.coach p {
    margin: 5px 0;
    color: #28a745;
}

@keyframes fadeInOut {
  0% {
    opacity: 0; /* Fully invisible */
  }
  50% {
    opacity: 1; /* Fully visible */
  }
  100% {
    opacity: 0; /* Back to fully invisible */
  }
}

/* styles.css */
#enable-audio-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

#enable-audio-button:hover {
    background-color: #218838;
}

