.micContainer {
    font-size: 26px;
    color: #0068d2;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	line-height: 50px;
	/*top: -35px;*/
}
i#icon {
	z-index: 99;
}
#micCircle {
    opacity: 1;
    position: absolute;
    z-index: 10;
}
#micCircle1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    top: -35px;
    left: -30px;
    z-index: 10;
	background: hsl(0deg 0% 99.02%);
    background: radial-gradient(circle, hsl(0deg 0% 100%) 15%, hsl(229.09deg 10.48% 79.41%) 52%, hsl(240deg 7.69% 89.8%) 100%);
    background: -moz-radial-gradient(circle, hsl(0deg 0% 100%) 15%, hsl(229.09deg 10.48% 79.41%) 52%, hsl(240deg 7.69% 89.8%) 100%);
    background: -webkit-radial-gradient(circle, hsl(0deg 0% 100%) 15%, hsl(229.09deg 10.48% 79.41%) 52%, hsl(240deg 7.69% 89.8%) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFFFFF", endColorstr="#c5c7d0", GradientType=1 );
}
#micCircle1.active {}
#micCircle2 {
    background: transparent;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    border: 2px solid #a2aace;
    position: absolute;
    top: -41px;
    left: -36px;
    z-index: 10;
	opacity: 0;
}	
#micCircle3 {
    background: transparent;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid #6b7bc5;
    position: absolute;
    top: -47px;
    left: -42px;
    z-index: 10;
	opacity: 0;
}
.active.bi-mic-fill::before {
	color: #01106a;
}
	

.animate-spin {
	animation: spin 1s linear infinite;
    margin-top: -5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.status-bar, .device-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px
}
.device-bar {
  flex-direction: column;
  gap: 10px
}
.controls, .device-controls {
  display: flex;
  align-items: center;
  gap: 10px
}
.device-controls {
  margin-left: auto
}
.controls button, .device-controls button {
  padding: 8px 16px;
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer
}
#bot-selector, #device-selector {
  padding: 8px 40px 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #2a3257;
  color: #91b9e1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center
}
#device-selector {
	max-width: 150px;
    position: absolute;
    bottom: 0px;
    font-size: 12px;
}
#bot-selector:focus, #device-selector:focus {
  outline: none;
  box-shadow: 0 0 4px #0000004d
}
.text-input-container {
  display: flex;
  gap: 8px;
  margin-left: 10px;
  width: 100%;
  flex: 1
}
#text-input {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-width: 200px
}
#send-text-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  flex-shrink: 0
}
#send-text-btn:hover {
  background-color: #0056b3
}
#connect-btn {
  background-color: #4caf50;
  color: #fff;
  min-width: 240px;
  z-index: 2;
}
#disconnect-btn {
  background-color: #549AE1 !important;
  color: #fff;
  min-width: 240px;
  z-index: 1;
  display:block;
}
button:disabled {
  display: none !important;
  cursor: not-allowed;
  position: absolute;
  z-index: -1;
}
#mic-toggle-btn {
	background-color: transparent;
	border: 0px;
	top: -30px;
	position: relative;
}

.main-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px
}
.bot-container {
  display: flex;
  flex-direction: column;
  align-items: center
}
#bot-video-container {
  width: 640px;
  height: 360px;
  background-color: #e0e0e0;
  border-radius: 8px;
  margin: 20px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}
#bot-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.debug-panel {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px
}
.debug-panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700
}
#debug-log {
  height: 200px;
  overflow-y: auto;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.4
}
@media screen and (max-width: 992px) {
    .home-anim .btn-container {
		height: 275px;
	}
	.home-anim .btn-container::before {
        height: 90px;
    }
	#mic-toggle-btn {
        top: -18px;
    }
	#connect-btn, #disconnect-btn {
		min-width: unset;
		padding: 0 20px;
		/*line-height: 47px !important;*/
	}
}
@media screen and (max-width: 768px) {}
