.ait-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#ait-progress-container {
    display: grid;
    align-items: center;
    width: 200px;
    height: 100%;
    background-color: #eee;
    border-radius: 4px;
}

#ait-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #4285f4; /* Google Blue */
    transition: width 0.4s ease;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#ait-status{
    display:none;
    margin-left:10px;
    font-size:12px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}