@charset "utf-8";

.simpdi {
width: 100%;
max-width: 740px;
margin: auto;
padding: 1rem;
box-sizing: border-box;
border:1px solid #e5e7eb;
border-radius: 16px;
background-color:#fff;
box-shadow:0 1px 3px rgba(0,0,0,.05);
}
.simpdi-q {
margin-bottom: 1em;
padding: 1rem;
border-bottom: 1px dotted #ddd;
}
.simpdi-q .text {
margin-bottom: 0.5rem;
padding: 2rem 1.5rem;
font-size: 1rem;
text-align: center;
border: 1px solid #d1d5db;
border-radius: 10px;
}
.simpdi-choices {
display: flex;
justify-content: center;
gap: 10px;
}
.simpdi-choice {
display: block;
padding: 0.5rem;
font-size: 1rem;
}
.simpdi-submit {
display: block;
margin: 1rem auto;
padding: 1rem 2rem;
font-size: 1rem;
border: none;
border-radius: 10px;
background-color: #111827;
color:#fff;
cursor: pointer;
}
.simpdi-submit:hover {
background-color: #0099ff;
}
.simpdi-result {
font-size: 1rem;
margin-top: 1rem;
padding: 2rem 1rem;
border: 1px solid #d1d5db;
border-radius: 12px;
background-color: #f9fafb;
} .simpdi-page-fade-overlay {
display: none;
position: fixed;
z-index: 99999;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
}
@media screen and (max-width:900px){
.simpdi-choices {
flex-direction: column;
justify-content: start;
}
}