.ai-disclaimer-container {
    position: fixed;
    bottom: 90px;
    right: -16px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.ai-disclaimer-icon {
    background: #fff;
    color: #941F82;
    font-size: 24px;
    cursor: pointer;
    width: 72px;
    height: 60px;
    box-shadow: gray 0px 0px 5px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-disclaimer-icon img {
    width: 35px;
    height: 35px;
}

.ai-disclaimer-box {
    display: block;
    color: #fff;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #941F82;
    border: none;
    height: 60px;
    width: 0px;
    padding: 0.5rem;
    z-index: 1;
    font-size: 14px;
    line-height: 1.1;
    transition: width 0.5s;
    white-space: nowrap;
}

.ai-disclaimer-box a {
    color: #fff;
    text-decoration: underline;
    overflow: hidden;
    white-space: nowrap;
}

.ai-disclaimer-container:hover .ai-disclaimer-box {
    width: 360px;
}