body {
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column; /* Stack children vertically */
    background-color: lightgrey;
    font-size: 16px; /* Set the font size */
  }
  
  #Consent{
    background-color: #fff; /* White background for readability */
    color: #000; /* Text color */
    padding: 40px;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px ;
    box-sizing: border-box;
    width: 80%; /* Set width to 100% of its parent */
    margin: 20px auto; /* Keep vertical margin, center horizontally */
  }


  #Instruction1 ,#Instruction2,#Instruction3,#Instruction4{
    align-items:center;
    justify-content:center;
}

#comprehension{
    flex-direction: column; 
    
}


#task-container,#PracticeRound {
    display: flex;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 5px;
}

#grid-container,#PracticeGridContainer {
    display: grid;
    grid-template-columns: repeat(8, 60px);
    grid-template-rows: repeat(8, 60px);
    gap: 2px;
    background-color: rgb(80, 80, 80);
    border: 2px solid rgb(255, 255, 255);
    color : rgb(255,255,255)
}


#SmoothContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Stays in place even when scrolling */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the element */
    width: 300px;
    height: 200px;
    background-color: rgb(80, 80, 80);
    border: 2px solid rgb(255,255,255);
    color : rgb(255,255,255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid-cell {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
}

#feedback {
    position: fixed; /* Stays in place even when scrolling */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the element */
    width: 200px;
    height: 100px;
    margin: 20px auto;
    border: 2px solid black;
    background-color: lightyellow;
}

#payoffValue {
    font-size: 70px;
    font-weight: bold;
}


#fixation {
    position: fixed; /* Stays in place even when scrolling */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the element */
    font-size: 70px; /* Adjust size as needed */
    font-weight: bold;
    color: black; /* Set color */
}



/* .context-smooth {
    /* background-color: lightblue; */
/* } */

/* .context-rough { */
    /* background-color: lightcoral; */
/* } */ */

#info-panel {
    width: 200px;
    padding: 20px;
    border: 1px solid black;
}

