/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 body {
    font-family: Arial;
 }

.general-box {
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    width: 360px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.general-input {
    width: 250px;
    padding: 8px;
    border: solid;
    border-width: 2px;
    border-radius: 4px;
    border-color: #0345fc;
    margin: 5px;
}

.general-button {
    width: 140px;
    background-color: #0345fc;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.msg-success {
    padding: 10px;
    background-color: #00a16b;
    color: #fff;
}

.msg-danger {
    padding: 10px;
    background-color: red;
    color: #fff;
}


.textarea-input {
    width: 250px;
    padding: 8px;
    border: solid;
    border-width: 2px;
    border-radius: 4px;
    border-color: #0345fc;
    margin: 5px;
    height: 100px;
    resize: none;
}

.select-input {
    width: 250px;
    padding: 8px;
    border: solid;
    border-width: 2px;
    border-radius: 4px;
    border-color: #0345fc;
    margin: 5px;
}


.broad-link {
    width: 400px;
    padding: 15px;
    margin: 10px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
}

.ai-question {
    width: 100%;
    margin: 5px;
    border: solid;
    border-color: #c9c9c9;
    border-width: 1px;
    border-radius: 5px;
    padding: 5px;
    text-align: left;
}

.ai-question div:nth-child(1) {
    font-size: 16px;
    margin: 5px;
    font-weight: bold;
}

.ai-question div:nth-child(2) {
    font-size: 13px;
    margin: 5px;
    font-family: monospace;
    color: grey;
}

.ai-question a {
    color: grey;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}
