#ask-question-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.aq-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 480px) {
    #ask-question-modal {
    position: static !important;
}
    .aq-modal-content {
        width: 99% !important;
        padding: 15px;
        border-radius: 4px;
    }
}
