/* Stile generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 40px;
}

.left-section {
    width: 40%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.right-section {
    width: 60%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.audio-player {
    margin-top: 20px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.audio-cover {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.control-btn {
    background-color: transparent; /* Rimuovi sfondo */
    color: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 24px;
    position: relative;
    transition: transform 0.2s ease;
}

.fa-stack {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1em;
    font-size: 2rem;
}

.fa-stack-2x {
    font-size: 0em;
    color: #333; /* Colore del cerchio */
}

.fa-stack-1x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Colore delle icone play/pausa */
}

.progress-bar {
    flex-grow: 1;
    height: 5px;
    appearance: none;
    background-color: #444;
    border-radius: 5px;
    outline: none;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#currentTime,
#duration {
    font-size: 14px;
    margin-left: 20px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.download-options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-btn:hover {
    background-color: #555;
}

.download-all {
    margin-top: 20px;
}

.label-copy {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table td {
    padding: 10px;
    border: 1px solid #ddd;
    font-family: "Poppins", sans-serif;
}

table td:first-child {
    font-weight: bold;
    text-align: right;
    padding-right: 20px;
}

.embargo {
    color: red;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.right-section h2 {
    text-align: center;
    color: #e6b800;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.right-section p {
    text-align: center;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

/* Media Query per dispositivi mobili */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .left-section,
    .right-section {
        width: 100%;
    }
}

.download-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* Rimuovi il sottolineato tipico dei link */
}

.download-btn:hover {
    background-color: #555;
}

.footer {
    width:100%;
    margin-bottom:0px;
    padding:20px;
    text-align:center;
    font-size:12px;
}



