#info-pop-up{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.692);
    background-image: url('src/images/fondo.jpg');
    border: solid 1px rgb(0, 225, 255);
    border-radius: 30px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.822);
    width: 500px;
    height: 200px;
    z-index: 10;
}

#info-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: rgb(0, 225, 255);
    font-family: 'Trebuchet MS';
    font-size: 18px;
    margin-right: 0;
    height: 80px;
    width: 400px;
}

#progress{
    background-color: white;
    width: 300px;
    height: 10px;
    border: solid 2px black;
    border-radius: 2px;
}

#btn-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 250px;
    height: 35px;
    margin-bottom: 30px;
}

.option{
    width: 80px;
    height: 30px;
    color: white;
    font-size: 12px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.438);
    border-radius: 7px;
    background-color: rgb(226, 0, 0);
}

#info-logo{
    /* background-image: url('src/images/logogris.png'); */
    background-size: contain;
    width: 115px;
    height: 50px;
}

#black-white{
    position:absolute;
    backdrop-filter: blur(2px);
    width: 976px;
    height: 640px;
    z-index: 3;
}

#pop-up-pc{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 250px;
    background-image: url('src/images/fondo.jpg');
    border-radius: 25px;
    box-shadow: 40px 40px 40px 40px rgba(0, 0, 0, 0.521);
    border: 3px solid rgb(0, 0, 0);
    z-index: 10;
}

#pop-up-cc{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 250px;
    background-image: url('src/images/fondo.jpg');
    border-radius: 25px;
    box-shadow: 40px 40px 40px 40px rgba(0, 0, 0, 0.521);
    border: 3px solid rgb(0, 0, 0);
    z-index: 10;
}

.pop-up-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    height: 50px;
}

.pop-up-title{
    font-family: 'Trebuchet MS';
    font-size: 18px;
    color: rgb(255, 255, 255);
    margin-left: 10px;
}

.close {
    font-family: 'Trebuchet MS';
    font-size: 18px;
    width: 25px;
    height: 25px;
    color: white;
    text-align: center;
    background-color: rgb(226, 0, 0);
    border-radius: 5px;
    user-select: none;  /* Desactiva la selección de texto */
    cursor: default;
}

.close:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.733); /* Sombreado al pasar el mouse */
    background-color: rgb(255, 61, 61);
}

.pop-up-content{
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sub-pop-content{
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    border: 1px solid black;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.212);
    width: 340px;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.target-text{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Trebuchet MS';
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    width: 300px;
    height: 30px;
    margin-top: 10px;
}

#current-cfg{
    position: absolute;
    right: 100px;
    top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Trebuchet MS';
    font-size: 11px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.781);
    border-radius: 10px;
    border: solid 1px black;
    color: #31aed4;
    width: 120px;
    height: 30px;;
}

.cfg-container{
    display: flex;
    width: 300px;
    height: 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.param-title{
    font-family: 'Trebuchet MS';
    font-size: 14px;
    color: white;
}

#select-pc{
    border: solid 3px black;
    border-radius: 10px;
    width: 120px;
    height: 30px;
    padding: 0px;
    font-size: 12px;
}

#select-cc{
    border: solid 3px black;
    border-radius: 10px;
    width: 120px;
    height: 30px;
    padding: 0px;
    font-size: 12px;
}

.prog-button {
    width: 100px;
    height: 30px;
    color: white;
    font-size: 12px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.438);
    border-radius: 7px;
    margin: 10px;
    background-color: rgb(226, 0, 0);
}

.prog-button:disabled {
    background-color: grey;
    color: darkgrey;
}