#chocalocoz-container {
    max-width: 600px; 
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    font-family: sans-serif;
}

/* Título */
#chocalocoz-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

/* Contenedor multimedia (Video y Canvas) */
.media-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; 
    background: #eee; 
    border-radius: 10px;
    overflow: hidden; 
    margin-bottom: 20px;
}

/* Estilo unificado para Video y Canvas */
#canvas {
    width: 320px;  
    height: 240px;  
	border-radius: 10px;
}

@media (max-width: 600px) {
	#canvas {
    width: 250px !important;  
    height: auto !important;  
	border-radius: 10px;
}
}

/* Contenedor de Botones */
.controls-row {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 10px;               
    flex-wrap: wrap;         
    margin-bottom: 20px;
}

/* Estilo base de los botones */
#chocalocoz-container button,
#chocalocoz-container .btn-download {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

/* Botones Azules (Cámara, Snap, Generate) */
#btn-camera, #btn-snap, #btn-generate {
     background-color: #51AA4F;
    color: white;
    border: 3px solid white;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
#btn-camera:hover, #btn-snap:hover, #btn-generate:hover {
     transform: scale(1.05);
}

/* Botón (Tomar otra vez) */
#btn-retry {
    background-color: #C9BA00;
    color: white;
}
#btn-retry:hover {
    background-color: #a71d2a;
}

/* Botón Gris (Regresar) */
#btn-back {
    background-color: #009EE2;
    color: white;
}
#btn-back:hover {
    background-color: #5a6268;
}

/* Select de equipos */
#team-select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
	justify-content: center;
	align-items:center;
}

.share-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.share-actions a {
    text-decoration: none;
    padding: 10px;
    background: #25D366;
    color: white;
    border-radius: 5px;
}