body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #5a4b9a;
}

#scanner-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 1em auto;
    border: 3px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    /* Mantiene la proporción 4:3 */
    padding-top: 75%; 
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#startButton {
    background-color: #6f5fde;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#startButton:hover {
    background-color: #5a4b9a;
}

#status {
    margin-top: 1em;
    font-size: 1.1em;
    color: #666;
}

.hidden {
    display: none;
}

#results {
    margin-top: 2em;
    text-align: left;
}

.result-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#cover-art {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    background-color: #eee; /* Color de fondo mientras carga */
}

.info p {
    margin: 0.5em 0;
}