#mra-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.mra-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0c4daf;
    color: #fff;
    box-sizing: border-box;
    width: 100%;
    height: 70px;
    padding: 8px 20px;
}

.mra-txt {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    font-family: sans-serif;
}

.mra-btn {
    background: #fff;
    border: 6px solid orange;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mra-play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #0c4daf;
    box-sizing: border-box;
    margin-left: 5px;
}

.mra-btn.is-playing .mra-play-icon {
    border-left: 7px solid #0c4daf;
    border-right: 7px solid #0c4daf;
    height: 20px;
    width: 20px;
    border-top: 0;
    border-bottom: 0;
    margin-left: 0;
}

.mra-btn.is-playing {
    transform: scale(1.1);
    box-shadow: 0 0 12px orange;
}

body {
    padding-bottom: 70px !important;
}