/* ===================================== */
/* OWF RECENTLY PLAYED - MAIN WIDGET STYLES */
/* ===================================== */

.owf-tracks {
    background: rgba(10, 22, 40, 0.95);
    border: 2px solid #00ffcc;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.owf-now {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 204, 0.3);
}

.owf-artist {
    font-size: 18px;
    font-weight: bold;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.owf-title {
    font-size: 14px;
    color: #4a8fa8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Progress Bar Styles */
.owf-progress-container {
    margin: 15px 0;
}

.owf-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffcc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.owf-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffcc 0%, #4a8fa8 100%);
    width: 0%;
    transition: width 1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.owf-progress-time {
    font-size: 11px;
    color: #4a8fa8;
    text-align: center;
    letter-spacing: 1px;
}

/* Play Button Styles */
.owf-play-button {
    width: 100%;
    background: rgba(0, 255, 204, 0.1);
    border: 2px solid #00ffcc;
    color: #00ffcc;
    padding: 12px 24px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.owf-play-button:hover {
    background: rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    transform: translateY(-2px);
}

.owf-play-button:active {
    transform: translateY(0);
}

.owf-play-icon {
    display: inline-block;
    margin-right: 8px;
}

/* Recently Played Section */
.owf-recent {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 204, 0.3);
}

.owf-label {
    font-size: 12px;
    font-weight: bold;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.owf-song-small {
    font-size: 12px;
    color: #4a8fa8;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 2px solid rgba(0, 255, 204, 0.3);
}

.owf-song-small:last-child {
    margin-bottom: 0;
}

/* Stream Status */
.owf-stream-status {
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 8px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.owf-status-live {
    background: rgba(0, 255, 100, 0.2);
    border: 1px solid #00ff64;
    color: #00ff64;
    box-shadow: 0 0 10px rgba(0, 255, 100, 0.3);
}

.owf-status-idle {
    background: rgba(255, 204, 0, 0.2);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.owf-status-offline {
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid #ff3232;
    color: #ff3232;
    box-shadow: 0 0 10px rgba(255, 50, 50, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .owf-tracks {
        padding: 15px;
    }

    .owf-artist {
        font-size: 16px;
    }

    .owf-title {
        font-size: 13px;
    }

    .owf-play-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .owf-artist {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .owf-title {
        font-size: 12px;
    }

    .owf-play-button {
        font-size: 12px;
        padding: 8px 16px;
        letter-spacing: 1px;
    }

    .owf-song-small {
        font-size: 11px;
    }
}
