﻿ 
body {
    margin: 0;
    padding: 0;
    font-family: "Tahoma", "Arial", sans-serif;
    background-color: #f8f9fa;
}


.imgattr {
    max-width: 800px;
    max-height: auto;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.table-hover tbody tr:hover td {
    font-size: 1.5rem; /* increase font size */
    transition: all 0.3s ease; /* smooth animation */
}

.link-hover-grow {
    transition: all 0.3s ease;
}

    .link-hover-grow:hover {
        font-size: 1.5rem; /* increase size on hover */
    }

.overlay a:hover {
    background-color: rgba(255, 0, 0, 1);
}

a.song-link {
    display: block;
    color: #0d6efd;
    text-decoration: none;
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    a.song-link:hover {
        background-color: #0d6efd;
        color: white;
        transform: translateX(-5px);
    }

 
