#floating-popup {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 500px;
    height: 700px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

#popup-content {
    padding: 20px;
    position: relative;
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

#start-listen,
#stop-listen {
    margin-top: 10px;
}

#audio-container {
    text-align: center;
    display: block;
    width: '100%';
}

.status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.status-item {
    font-size: 40px;
}

.icon {
    transition: color 0.3s;
}

.inactive .icon {
    color: gray;
}

.active .icon {
    color: green;
}