body{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  background-image: url(../img/fons.png);
}
button{
    top:5vh;
    position: relative;
    height: 50px;
    width: 150px;
    font-weight: bold;
}
button:hover{
    box-shadow: 0px 0px 2px 1px cyan;
}
#container{
    position: relative;
    top:20vh;
    min-height: 70px;
    width: 90vw;
    border-bottom: 3px double lightgrey;
    border-right: 3px double lightgrey;
    border-left: 3px double lightgrey;
    background-color: rgb(255, 175, 109);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}
.ball-in{
    height: 80px;
    width:80px;
    border-radius: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
}
#info {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;

    width: 900px;
    height: 60px; 
    margin: 20px auto; 
    margin-bottom: 2px;
    padding: 15px; 

    border: 3px solid #e96900; 
    border-radius: 20px; 
    background-color: #ff76bf;

    font-size: 18px;
    color: #ffff;

    position: relative; /* Per assegurar que la X es col·loqui bé */
}

#boto_info {
    position: absolute;
    top: 10px;
    right: 10px;
}

#boto_tancar {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#boto_tancar:hover {
    transform: scale(1.1);
}

#numero {
    margin-top: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #ff1493; /* Rosa fúcsia */
}

#missatge-boles{
    font-size: 15px;
    color: #ff70bc;
}

#addBallButton {
    background-color: #ff69b4; /* Rosa brillant */
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#addBallButton:hover {
    background-color: #ff1493; /* Rosa més fort */
}

#addBallButton:disabled {
    background-color: #dcdcdc; /* Color gris per quan està deshabilitat */
    cursor: not-allowed;
}

/* Botó per reiniciar */
#resetButton {
    background-color: #ff6347; /* Taronja suau */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

#resetButton:hover {
    background-color: #ff4500; /* Taronja més intens */
}

#resetButton:disabled {
    background-color: #dcdcdc; /* Color gris per quan està deshabilitat */
    cursor: not-allowed;
}
.botons {
    display: flex;
    justify-content: center; /* Centra horitzontalment */
    gap: 20px; /* Espai entre els botons */
    flex-wrap: wrap; /* Per si la pantalla és petita */
    margin-top: 20px;
}

.botons button{
    min-width: 300px;
}
