.aia-content .aia-loading-indicator {
    display: none;
    width: 100px;
    margin: 20px auto;
}

.aia-content .aia-loading-bar {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    border-radius: 50%;
    animation: loading 1s infinite;
}

.aia-content .aia-loading-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.aia-content .aia-loading-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.aia-content .aia-loading-bar:nth-child(4) {
    animation-delay: 0.6s;
}

.aia-content .aia-loading-bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes loading {
    0%, 100% {
        transform: scale(1);
        background-color: #333;
    }
    50% {
        transform: scale(1.5);
        background-color: #888;
    }
}

.aia-content button {
    cursor: pointer;
}

#aia-prompt {
    width: 58%;
    max-width: 350px;
}

.aia-content *:focus {
    outline: none;
}

#aia-prompt-holder {
    padding: 10px;
    border-radius: 8px 8px 0 0;
    position: sticky;
    bottom: 0;
    text-align: center;
    background-color: white;
}

.aia-copyright, .aia-copyright a, .aia-copyright a:hover, .aia-copyright a:focus, .aia-copyright a:visited {
    font-size: .6rem;
    color: darkgray !important;
    text-align: right;
}

.aia-copyright {
    margin: 10px;
}
