html, body {
  font-size:20px;
  min-width:800px;
  /*border:1px blue solid;*/
}

.header{
	background-image:url(../Images/whiteBG.png);
	margin-bottom:10px;
}

.content2{
	width: 85%;
	height:83%;
}

.imageHolder{
	width:300px;
	margin:0px auto;
}

#submitBtn, #retakeBtn, #AnswerBtn, #nextBtn, #prevBtn{
	font-size: 15px;
	width: 230px;
     margin: 5px auto;
}



#refbtn img{
	margin-right:40px;
}


#results{
	font-size: 15px;
}

/*.choicesHolder{
	width:400px;
}*/



.popupHolder {
  height:350px;
  width:250px;
}


#highscorefeedBack{
	margin-top:15px;
}

/*====================*/

.inline{
  white-space:nowrap;
}

.inlineChoices{
  white-space:nowrap;
}


.choices{
	margin:5px !important;
}


.setChoices1, .setChoices2{
	width:100px;
	height:100px;
}

.marks{
	width:30px;
	height:30px;
}

.imgTD{
	width:150px;
}

.imgTD img{
	width:150px;
}

.itemImg{
	width:100px;
}

.tableHolder{
	width:350%;
	overflow-x:auto;
	overflow-y: scroll;
	height: 400dvh;
	-webkit-overflow-scrolling: touch;
}

.tableHolder td{
	/*white-space:nowrap;*/
}



.hide-on-mobile {
	display: none;
}

.draggable{
	margin: 20px;
}

/*
.draggable1, .draggable2 {
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
}



.dropped{
	width:100px !important;
	height:100px !important;
	line-height:100px !important;
}



#choices1, #choices2, #choices3, #choices6, #choices9, #choices10, #choices11{
	padding:40px 30px;
}

#choices4, #choices7{
	padding:40px 30px;
}

#choices5{
	padding:20px 30px;
}

*/
/* Circular container */
.circle-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #9bbb59;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
	flex-direction: column; /* Stacks elements vertically */
	left: 20%;
}

/* Rectangular drop area inside the circle */
.droparea1 {
    width: 90%;
    height: 75%;
    display: grid;
    grid-template-columns: repeat(2, 100px);
    grid-auto-rows: 50px;
    gap: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
    padding: 10px;
    box-sizing: border-box;
    background: transparent;
	left: -10px;
}



.droparea2 {
    width: 300px;
    height: 300px;
    margin: 5px auto;
    display: grid;
    grid-template-columns: repeat(2, 125px); /* Exactly 3 columns */
    grid-auto-rows: 50px; /* Fixed row height */
    gap: 0px; /* Space between items */
    border: 1px dotted #999999;
    background-color: #f9f9f9;
    padding: 10px;
    box-sizing: border-box;
    overflow-y: auto; /* Enables scrolling only when needed */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    align-content: start; /* Prevents stretching */
	  position: absolute;
    top: 100%; /* Moves it below .circle-container */
    left: -35%;
    transform: translateX(-50%);
}

.droparea2 .dropped-item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: lightgray;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
	margin-top: 10px;
}