body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    margin-top: 50px;
}

h1 {
    color: #333;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px 0;
}

button:hover {
    background-color: #0056b3;
}

button i {
    margin-right: 8px;
}

.hidden {
    display: none;
}

#prizes img {
    max-width: 100px;
    margin: 10px;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.grid-item {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
}

.grid-item:hover {
    background-color: #0056b3;
}

.prizes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    justify-items: center;
}

.prize-container {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.prize-container:hover {
    transform: scale(1.05);
}

.prize-container.selected {
    border: 2px solid #007bff;
}

/* Estilos para la interfaz 3.1 */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Estilos para la barra de progreso */
.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    height: 10px;
    margin-bottom: 20px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    transition: width 0.3s ease;
}

/* Estilos para la tabla de resumen */
#summaryTable {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

#summaryTable th, #summaryTable td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

#summaryTable th {
    background-color: #007bff;
    color: #fff;
}

#summaryTable td {
    background-color: #f9f9f9;
}

#selectedPrizeImage img {
    max-width: 100px;
    height: auto;
}

/* Estilos para el botón de regreso */
.back-button {
    position: absolute;
    top: 60px;
    left: 20px;
    background: none;
    border: none;
    color: #007bff;
    font-size: 24px;
    cursor: pointer;
}

.back-button:hover {
    color: #0056b3;
}



#summaryTable img {
    max-height: 2cm; /* Limitar la altura de las imágenes a 2 cm */
    width: auto; /* Mantener la proporción de la imagen */
}

.delete-button {
    background: none;
    border: none;
    color: #d9534f;
    cursor: pointer;
    font-size: 20px;
}

.delete-button:hover {
    color: #c9302c;
}

