/* Önceki stillere eklemeler */

.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    text-align: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
}

.song-type {
    font-size: 0.8em;
    color: #7f8c8d;
    margin-left: 5px;
    padding: 2px 5px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

/* Mobil uyumluluk güncellemeleri */
@media (max-width: 480px) {
    .song-title {
        width: calc(100% - 120px);
    }
    
    .song-type {
        position: absolute;
        right: 60px;
        margin-top: -20px;
    }
}