#search {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: rgba(40, 44, 52, 0.8);
    border: 2px solid #3a3f4b;
    border-radius: 12px;
    color: #e8e8e8;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    position: relative;
}

#search:focus {
    outline: none;
}

#search::placeholder {
    color: #8892b0;
}

#listView {
    position: relative;
    opacity: 1;
}

#songsList {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.song-item {
    width: 100%;
    background: rgba(40, 44, 52, 0.6);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 178, 209, 0.1);
    backdrop-filter: blur(5px);
}

.song-item:hover {
    background: rgba(40, 44, 52, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.song-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.song-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #a8b2d1;
    margin-bottom: 0.3rem;
}