.btn-styles{
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
}

.btn-styles:hover{
  cursor: pointer;
  background-color: #069460; /* Green */
}
#FotoTitle {
    font-size: 22px;
    font-weight:600;
}
#msg {
    font-size: 22px;
    font-weight: 400;
}
#mycanvas {
    height: 75vh;
}

#instruction img {
    width: 100%;
    height: auto;
}

#btn-Iniciar {
    width:250px;
}


/******* SPOOFF *******/
#instruction {
    text-align: center;
}

#instruction img {
    width: 100%;
    max-height: 70vh;
}

#instruction #imagen {
    display: block;
}

#instruction #imagen2 {
    display: none;
}
/*STEPS*/

.step-circle {
    width: 80px;
    height: 80px;
}


.step-circle img {
    object-fit: contain;
}
/**RESULT TABLE**/
#resultImg {
    width: 100%;
    height: auto;
    max-width: 220px;
}

.resultado-tabla {
    border-collapse: collapse;
    width: 300px;
    margin: auto;
    font-size: 16px;
}

.resultado-tabla td {
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.label {
    color: #1b425d;
    font-weight: 500;
}

.valor {
    text-align: right;
    color: #4ebe69;
    font-weight: bold;
}
/***************/

.step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    margin-bottom: 0px;
    width: 100%;
    min-width: 450px;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #dee2e6;
    z-index: 1;
    transform: translateY(-50%);
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: #207170;
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #dee2e6;
    transition: all 0.3s ease;
}

.step-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-circle.active {
    box-shadow: 0 0 0 5px #063a51;
}

.step-circle.completed {
    background-color: #063a51;
}

.step-content {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.step-content.active {
    display: block;
}

.step-title {
    margin-top: 15px;
    font-weight: bold;
}
/**************/
/* Para pantallas más grandes (PC) */
@media (min-width: 768px) {
    #imagen {
        width: 50%;
    }
}
#instruction #imagen2 {
    display: none;
}
/* Para dispositivos movies */
@media only screen and (max-width: 767px) {
    #imagen {
        width: 80%;
    }

    #instruction #imagen {
        display: none;
    }

    #instruction #imagen2 {
        display: block !important;
    }
    .step-progress {
        min-width: 300px;
    }
}
@media (max-width: 440px) {
    .step-circle {
        width: 80px;
        height: 80px;
    }
    #resultImg 
    {
        width: 180px;
        height: 180px;
    }
}