#random-answer-container {
text-align: center;
margin-top: 15px;
align-items: center;
background: #eee;
padding: 15px;
border: 1px solid #ddd;
width: auto;
margin: 20px auto;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
#question-label {
font-size: 16px;
font-weight: bold;
margin-bottom: 15px;
display: block;
}
#question-input {
width: 80%;
padding: 5px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 3px;
}
#get-answer {
background: #0073aa;
font-weight: bold;
font-size: 16px;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 3px;
transition: background 0.3s ease;
margin-bottom: 15px;
}
#get-answer:hover {
background: #005177;
}
#get-answer.clicked {
transform: scale(0.95);
transition: transform 0.1s ease;
}
#question-display {
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
}
.ask-question {
color: red;
}
#answer {
font-size: 36px;
font-weight: bold;
margin-top: 15px;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
border-radius: 50%;
margin: 15px auto;
opacity: 1;
transition: opacity 1s ease-in-out;
}
.yes-answer {
background: green;
color: white;
}
.no-answer {
background: red;
color: white;
}
.question-answer {
background: gray;
color: white;
}