/* frontend.css */
.gilk-ai-explain, .gilk-ai-mcq {
    background: #f7fbff;
    padding: 16px;
    border-radius: 12px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

select, input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #1d4ed8;
}

.gilk-answer, .gilk-mcq {
    margin-top: 20px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    min-height: 50px;
}

.gilk-mcq-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.gilk-result {
    margin-top: 10px;
    font-weight: bold;
}