.mini-player {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #333;
    padding: 5px;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
}

.time-display {
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    font-size: 11px;
}

.progress-container {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: #2196F3 !important;
    width: 0%;
    transition: width 1s linear;
    position: absolute;
    left: 0;
    top: 0;
}