.clb-form {
    display: flex;
    gap: 30px;
    padding: 20px;
}
.right-form {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.right-form input,
.right-form textarea {
    padding: 10px;
    font-size: 14px;
    width: 100%;
}
.main-text {
    width: 70%;
}
.main-text textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}
button {
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

/* Modal Styles */
.ai-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.ai-modal-content {
    background: white;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.ai-modal-content pre {
    background: #f5f5f5;
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
}
.ai-modal-buttons {
    margin-top: 20px;
    text-align: right;
}
.ai-modal-buttons button {
    margin-left: 10px;
}
