/* Reset de estilos para garantir consistência entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
    color: #4b3832;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #d3b8ae;
    border-left: 5px solid #8c6057;
    border-radius: 5px;
}

.section-title {
    font-size: 22px;
    color: #8c6057;
    margin-bottom: 10px;
    font-weight: bold;
}

.song-title {
    font-size: 18px;
    color: #4b3832;
    margin: 5px 0;
    cursor: pointer;
    padding: 10px;
    background-color: #e8d0c2;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.song-title:hover {
    background-color: #c69b7b;
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 10px;
}

.close-btn {
    color: #4b3832;
    float: right;
    font-size: 28px;
    font-weight: bold;
    border: none;
    background: none;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #c69b7b;
}

#lightbox-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4b3832;
}

#lightbox-lyrics {
    white-space: pre-wrap;
    font-size: 16px;
    color: #4b3832;
    margin-bottom: 15px;
}

button.close-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #8c6057;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}

button.close-btn:hover {
    background-color: #4b3832;
}
