/* Additional styles for enhanced functionality */

.playlist-controls {
    margin: 20px 0;
    text-align: center;
}

.playlist-controls button {
    margin: 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.playlist-controls button:hover {
    background: #0056b3;
}

.suno-player {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.suno-track {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.suno-track:hover {
    background: rgba(255,255,255,0.2);
}

.track-info {
    flex: 1;
    margin-left: 15px;
}

.track-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.track-artist {
    color: #ccc;
    font-size: 0.9rem;
}

.game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #e0e0e0;
}

.game-card:hover {
    transform: scale(1.02);
}

.game-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.game-info {
    padding: 20px;
}

.shirt-options {
    margin: 20px 0;
}

.color-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: border-color 0.3s;
}

.color-swatch:hover {
    border-color: #333;
}

.color-swatch.blue { background: #4a90e2; }
.color-swatch.black { background: #333; }
.color-swatch.white { background: #fff; }
.color-swatch.red { background: #ff6b6b; }
.color-swatch.green { background: #4ecdc4; }

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    border-left: 4px solid #c62828;
}

.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    border-left: 4px solid #2e7d32;
}
