.circular-audio-player {
    position: relative;
    display: inline-block;
}

.caw-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Default, can be overridden by user settings */
    background-position: center center; /* Default, can be overridden by user settings */
    z-index: -1; /* Ensure it's behind the canvas and controls */
}

.caw-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.caw-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.caw-play-pause-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.caw-timer {
    font-size: 0.9em;
    margin-top: 10px;
}

