#startiapp-memo-button {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff4444;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 1;

    @media (max-width: 480px) {
        width: 54px;
        height: 54px;
        bottom: 76px;
        right: 14px;
    }
}

#startiapp-memo-button.recording {
    background-color: #4caf50;
}

#startiapp-memo-button svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.startiapp-memo-hide{
  display: none !important;
}