._dash-loading {
  display: none;
}

body {
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
  }

.expanding {
    animation: expand-contract 1.5s infinite;
}

@keyframes expand-contract {
    0% {
        width: 20px;
        height: 20px;
    }
    50% {
        width: 30px;
        height: 30px;
    }
    100% {
        width: 20px;
        height: 20px;
    }
}

@keyframes listening-animation {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.listening-dots {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: black;
    animation: listening-animation 0.8s infinite ease-in-out;
}

.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
