
body {
    background-color: #fff;
    /*font-family: "Open Sans";*/
    color: #000;
    overscroll-behavior: contain;
    overflow: hidden;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEuNDEgNC42NyAyLjQ4IDMuMTggMy41NCA0LjY3IDEuNDEgNC42NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzLjU0IDUuMzMgMi40OCA2LjgyIDEuNDEgNS4zMyAzLjU0IDUuMzMiLz48L3N2Zz4=) no-repeat 100% 50%;
}

button {
    appearance: none;
    background: none;
    border: none;
}

a {
    color: #214478;
}

a:hover {
    color: #0080AA;
}

input, textarea {
    accent-color: #0080AA;
}

textarea:focus, input:focus {
    outline-color: #0080AA;
}

li p {
    margin-top: 1rem;
    margin-bottom: 1rem; /* fix for marked and gpt-4.1 */
}

.loading {
    text-align: center;
    padding-top: 40px;
    background-image: url(assets/img/loading.gif);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 40px;
    margin-top: 20px;
    width: 100%;
}

.plus, .onoff {
    font-size: 14px;
    cursor: pointer;
}

.plus:hover {
    opacity: 0.66;
}

.choice {
    cursor: pointer;
}

#pchoice {
    display: none;
    position: fixed;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    border-right: 1px solid #eee;
    background-color: #fafafa;
    z-index: 1;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

#tooltip {
    display: none;
    position: fixed;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    background-color: #fafafa;
    z-index: 10003;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

#blackback {
    display: none;
    z-index: 10001;
    position: fixed;
    opacity: 0.5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #214478;
    animation: blackback 0.5s ease-out;
}
@keyframes blackback {
    0% { opacity: 0; }
    100% { opacity: 0.5;} 
}

#transback {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #aaa;
    opacity: 0.5;
    animation: blackback 0.5s ease-out;
    z-index: 2;
}

.tabs {
    display: table;
    font-size: 15px;
    border-radius: 18px;
    border: 1px solid #e0e0e0;
    background-color: #FAFAFA;
    padding: 4px 0;
}

.tabs span {
    border-radius: 18px;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
}

.tabs .unsel {
    border: 1px solid #FAFAFA;
    background-color: #FAFAFA;
}

.tabs .sel {
    /*border: 1px solid #ddd;
    background-color: #fff;*/
    border: 1px solid #B6DBFC;
    background-color: #E9F6FE;
}

.content {
    padding-left: 50px;
    width: 684px;
}

.contentc {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.content .frame, .contentc .frame {
    font-size: 15px;
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 18px;
}

.post-control {
    font-size: 15px;
    padding: 4px 10px 4px 10px;
    border-radius: 18px;
    height: 32px;
    color: #000;
}

select.post-control {
    padding-right: 15px;
}

.top {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
}

.nbtop {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none!important;
}

.bottom {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
}

.bottomleft {
    border-top-left-radius: 0!important;
}

.mid {
    border-radius: 0;
}

.nbmid {
    border-radius: 0;
    border-bottom: none!important;
}

.nmid {
    border-radius: 0;
    border-left: none!important;
    border-right: none!important;
}

.bleft {
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
}

.bright {
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
}

#pane {
    position: fixed;
    width: 250px;
    min-height: 100vh;
    border-right: 1px solid #eee;
    background-color: #fafafa;
    z-index: 10000;
    padding-bottom: 40px;
    top: 0;
    left: 0;
    overflow-x: hidden;
}

#pane h2, #app-header {
    text-align: left;
    margin: 0;
    padding: 10px;
    font-weight: 600;
}

#app-header {
    display: none;
    color: #214478;
    text-wrap: nowrap;
}

#logo {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#pane h5 {
    text-align: center;
    margin: 0;
    padding-top: 0px;
    padding-bottom: 20px;
}

#pane-top {
    border-bottom: 1px solid #eee;
}

#pane-top .plus {
    margin-left: 10px;
    margin-right: 30px;
    margin-top: 10px;
}

#pane-center {
    position: fixed;
    width: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
}

#pane-docs {
    margin-top: 5px;
    font-size: 15px;
}

.pane-channels {
    padding-left: 5px;
}

.pane-channels h2 {
    font-size: 16px;
    text-align: left;
    margin: 0;
    padding: 10px;
}

.pane-channels h3 {
    font-size: 16px;
    margin: 0;
    padding: 5px 5px 5px 20px;
    cursor: pointer;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.pane-channels h3:hover {
    background-color: #fff;
    color: rgb(24, 144, 255);
}

.pane-channels h3.sel, .selpane {
    background-color: rgb(230, 247, 255);
    border-right: 2px solid #0080AA;
    border-left: 2px solid #0080AA;
    color: #0080AA;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

#pane .tab {
    padding: 7px 0px 7px 10px;
    overflow: hidden;
}

#pane-app {
    display: none;
}

#pane-more {
    margin-left: 8px;
    padding-bottom: 2px;
}

.pane-list {
    padding-top: 3px;
    border-top: 1px solid #eee;
    overflow: hidden;
}

.pane-list .title {
    text-align: left;
    padding-left: 10px;
    font-size: 12px;
}

#pane-bottom {
    position: fixed;
    width: 250px;
    bottom: 0;
    padding: 5px 20px 10px 20px;
    border-top: 1px solid #eee;
}

#pane-bottom .plus {
    margin-left: 0px;
    margin-top: 10px;
    padding: 8px 10px 5px 0px;
}

#smallpane {
    position: fixed;
    width: 50px;
    min-height: 100vh;
    border-right: 1px solid #ddd;
    background-color: #f5f5f5;
    z-index: 10000;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-left: 12px;
}

#smallpane .plus {
    margin-top: 20px;
}

#top {
    display: none;
    position: fixed;
    padding-left: 250px;
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #eee;
    background-color: #fafafa;
    z-index: 10000;
}

#top span {
    padding-right: 15px;
}

#top input {
    font-size: 14px;
    padding: 4px 12px;
    border: 1px solid #eee;
    background-color: #fff;
    margin-top: 7px;
    margin-left: 10px;
    margin-right: 0px;
    width: 90%;
}

#wall, #ins, #sources, #prefs, #app-assistant, #groups, #sub, #billing, #keys, #edit-db, #edit-agent, #tooledit, #home-agent {
    display: none;
}

#page {
    height: 100vh;
    margin-left: 250px;
    padding-right: 0px;
    overflow: scroll;
}

@supports (-webkit-touch-callout: none) {
    #page {
      height: -webkit-fill-available;
    }
}

#page h2 {
    padding: 20px;
}

#page-loading {
    position: fixed;
    bottom: 0;
    left: 250px;
    width: calc(100% - 250px);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #214478;
    border-top: 1px solid #B6DBFC;
    background-color: #E9F6FE;
    z-index: 10000;
}

#page-end {
    height: 50px;
}

#channels-add {
    font-size: 15px;
    text-align: center;
    border: 1px solid #E7E7E7;
    background-color: #F5F5F5;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 5px 10px;
    margin-left: -2px;
}

#channels-add:hover {
    border: 1px solid #B6DBFC;
    background-color: #E9F6FE;
}

#channels-name {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#channels-list {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 2px;
    height: auto;
    background: none;
    padding: 0;
}

#channels-list option {
    padding: 2px 10px;
}

#channels-list, #channels-name {
    width: 70%;
    border: 1px solid #ddd;
    background-color: #fafafa;
}

#wall .date, #ins-post .date {
    margin: 0 0 10px 50px;
    font-size: 14px;
}

.wall-delete {
    margin-left: 15px;
    float: left;
}

.wall-delete img {
    cursor: pointer;
}

.wall-resize {
    margin-left: -7px;
    margin-top: 7px;
}

.wall-resize img {
    cursor: ew-resize;
}

#wall-status {
    text-align: center;
}

#wall-status div {
    margin-bottom: 6px;
}

#wall-status code {
    font-size: 12px;
    color: #777;
}

#wall-tool {
    text-align: center;
}

#wall-tool span {
    margin-left: 20px;
}

#wall-back {
    position: fixed;
    top: 10px;
    left: 250px;
    width: 160px;
    height: 30px;
    background-color: #fff;
    border-radius: 18px;
    z-index: 1;
}

#wall-back span {
    margin-left: 10px;
}

#wall-genaiback {
    position: fixed;
    top: 62%;
    left: 20px;
    width: 30px;
    height: 30px;
    z-index: 1;
}

#wall-sign {
    position: fixed;
    display: table;
    top: 62%;
    right: 40px;
    font-size: 15px;
    border: 2px solid #000;
    border-radius: 18px;
    padding: 10px;
    background-color: #fff;
    text-align: left;
    cursor: pointer;
    z-index: 2;
}

#wall-sign:hover {
    background-color: #F5F5F5;
}

#wall-rate {
    display: none;
    color: #214478;
    margin-bottom: 30px;
}

#wall-rate a {
    text-decoration: underline;
    color: #0080AA;
    font-weight: 700;
}

.insight {
    font-size: 16px;
}

.insight .user, .insight .bot, .insight .link, .insight .next, #wall-status {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.movedialog .insight .user, .movedialog .insight .bot, .movedialog .insight .link, .movedialog .insight .next {
    width: 600px;
}

.insight .user {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 30px;
}

.insight .user textarea, .insight .user span {
    max-width: 75%;
    min-height: 24px;
    padding: 5px 20px 5px 20px;
}

.insight .user span {
    padding: 7px 20px 7px 20px;
}

.insight .bot {
    position: relative;
    text-align: left;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    border-top: 1px solid #ddd;
    accent-color: #0080AA;
}

.insight .bot:focus {
    outline-color: #0080AA;
}

.insight .bot ul {
    margin-left: 20px;
}

.insight .bot h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.insight .bot .tool {
    position: absolute;
    top: 10px;
    right: -40px;
    cursor: pointer!important;
}

.insight .bot a {
    text-decoration: none;
}

#footnote-label {
    font-size: 16px;
}

[data-footnote-ref]::before {
    content: ' [';
}
  
[data-footnote-ref]::after {
    content: ']';
}

[data-footnote-backref] {
    display: none;
}

.insight p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.insight h2 {
    padding: 0!important;
}

.insight input[type="text"], .insight textarea {
    font-size: 15px;
    color: #000;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 18px;
}

.insight input[type="text"], .insight .textfield, .llmform .textfield {
    padding: 5px 10px 5px 20px;
    min-height: 32px!important;
}

.insight textarea, .llmform textarea {
    padding: 10px 10px 5px 20px;
    min-height: 100px;
    resize: none;
}

.insight .reply {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 30px;
}

.insight .reply .query {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
    min-height: 40px!important;
    border-width: 1px 0 0 0!important;
    padding-left: 20px!important;
    padding-right: 70px!important;
    margin: 0!important;
    display: block;
}

.insight .reply button {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
    border-bottom-left-radius: 0!important;
    height: 100%!important;
    width: 50px!important;
    margin: 0!important;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
}

.insight img[alt=drawing] {
    width: 100%;
}

.insight table {
    font-size: 13px;
    background-color: #fafafa;
}

.insight th {
    font-weight: 600;
    text-align: center;
}

.insight td, .insight th {
    border: 1px solid #ccc;
    padding: 2px 10px;
}

.insight code {
    font-size: 13px;
    color: #333;
}

.insight .subtitle {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.insight .link {
    margin-top: 0px;
}

.insight .link .spanlink {
    cursor: pointer;
    color: #039;
    margin-left: 10px;
    margin-right: 10px;
}

.insight .charttype {
    margin-right: 5px;
    border: 1px solid #e0e0e0;
    background-color: #F5F5F5;
}

.insight .chat {
    padding-top: 20px;
}

.insight .title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
}

.insight .break {
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
    height: 1px;
}

.insight canvas {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 1px;
}

.insight b {
    font-weight: 600;
}

.insight ul {
    padding-left: 15px;
}

.insight .reply img, .insight .next button img {
    width: 25px;
}

.insight .next button {
    margin-top: 0px;
}

#attach-button {
    position: absolute;
    top: 10px;
    left: 10px;
}

#attach-docs {
    position: absolute;
    top: 10px;
    left: 40px;
}

#attach-docs span {
    font-size: 14px;
}

#attach-docs span img {
    cursor: pointer;
    width: 16px;
    margin-left: 10px;
}

#attach-error {
    text-align: center;
    margin-top: 20px;
    color: #9e1c1c;
}

#query {
    border-top-left-radius: 18px!important;
    border-top-right-radius: 18px!important;
    padding-left: 40px!important;
}

.insight-blue {
    border: 1px solid #B6DBFC;
    background-color: #E9F6FE;
}

.insight-gray {
    border: 1px solid #e0e0e0;
    background-color: #F5F5F5;
}

.insight-white {
    border: 1px solid #ddd;
    background-color: #fff;
}

.insight-green {
    border: 1px solid #CEECAF;
    background-color: #F8FFEE;
}

.insight-yellow {
    border: 1px solid #FCE8AE;
    background-color: #FEFBE8;
}

.insight-bgreen {
    border: 1px solid #B8EDE8;
    background-color: #EBFEFB;
}

.insight-red {
    border: 1px solid #F7CAC7;
    background-color: #FDF1F0;
}

.insight-trans {
    background-color: inherit;
}

.frame-blue {
    border: 6px solid #B6DBFC;
}

.frame-gray {
    border: 6px solid #e0e0e0;
}

.frame-green {
    border: 6px solid #CEECAF;
}

.frame-red {
    border: 6px solid #F7CAC7;
}

.insight .chat {
    padding-top: 20px;
}

.insight .title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
}

.insight .break {
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
    height: 1px;
}

.insight canvas {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 1px;
}

.insight .genai {
    color: #555;
    margin-bottom: 10px;
}

.insight b {
    font-weight: 600;
}

.insight ul {
    padding-left: 15px;
}

.chart {
    position: relative;
}

.htmlchart {
    width: 200px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.htmlchart table {
    width: 100%;
}

.htmlchart th {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #039;
    padding: 5px 10px;
    color: #fff;
    background-color: #039;
}

.htmlchart td {
    font-size: 24px;
    text-align: center;
    border: 1px solid #039;
    padding: 10px 20px;
    color: #039;
}

#ins-back {
    margin-right: 20px;
}

#ins-tables {
    display: inline-block;
}

#ins-table {
    font-size: 14px;
    margin-bottom: 20px;
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
}

#ins-table .row {
    display: table-row;
    padding-top: 4px;
    padding-bottom: 4px;
}

#ins-table .cell {
    display: table-cell;
    padding: 2px;
}

#ins-table .name {
    width: 55%;
}

#ins-table .timely {
    width: 15%;
}

#ins-table .date {
    width: 25%;
}

#ins-table .link {
    cursor: pointer;
    color: #039;
}

#ins-table .del {
    width: 5%;
}

#ins-title, #sources-title {
    margin-bottom: 20px;
}

#ins-date {
    width: 105px;
}

#ins-hour, #ins-minute {
    width: 40px;
    border-radius: 0;
    padding-left: 5px;
}

#ins-timely, #ins-date, #sources-catalogs-0, .sources-join-catalogs, .sources-join-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#ins-compare, #ins-timezone, #sources-tables-0, .sources-join-type, .sources-join-tables {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#ins-timezone {
    width: 180px;
}

#ins-timepane {
    margin-top: 10px;
}

#ins-sources {
    width: 37.5%;
}

#ins-sources-plus {
    padding: 15px;
}

#ins-test {
    width: 48%;
    float: left;
}

#ins-schedule {
    width: 48%;
    float: right;
}

#ins-end {
    clear: both;
    height: 150px;
}

#ins-error {
    display: none;
    font-size: 12.5px;
    padding: 10px;
    margin: 0px 50px;
    border-radius: 18px;
    color: #900;
}

#ins-loading {
    margin: 30px;
}

#ins-prompts textarea {
    width: 100%;
    height: 70px;
    font-size: 14px;
    margin-bottom: 0px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#ins-prompts select {
    width: 100%;
    margin-bottom: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#ins-charts-tools {
    margin-top: 20px;
}

#ins-charts-width {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#ins-charts-color {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.cols-line {
    clear: both;
    margin-top: 10px;
}

.cols-line .onoff {
    margin-right: 10px;
}

.ins-filter, .source-filter {
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.ins-filter {
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.source-filter {
    clear: both;
    text-align: right;
    margin-top: 4px;
    margin-bottom: 0px;
    padding-right: 20px;
}

.ins-filter span, .source-filter span {
    border: 1px solid #ddd;
    padding: 0px 4px;
    border-radius: 10px;
    line-height: 22px;
}

.metric-col {
    font-size: 13px !important;
    border: 1px solid #ddd;
    padding: 0px 4px;
    border-radius: 8px;
}

#time input {
    font-size: 13px;
}

.button-green, .button-blue, .button-red, .button-gray, .insight button {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 18px;
    padding: 8px;
    cursor: pointer;
}

.button-green, .insight button {
    background-color: #0080AA;
    border: none;
    color: #fff;
}

.button-green:hover, .insight button:hover {
    background-color: #214478;
    transition: 0.4s;
}

.button-blue {
    background-color: #214478;
    border: none;
    color: #fff;
}

.button-blue:hover {
    background-color: #0080AA;
    transition: 0.4s;
}

.button-red:hover {
    border: 1px solid #F7CAC7;
    background-color: #FDF1F0;
}

.button-gray:hover {
    border: 1px solid #0080AA;
    background-color: #F5F5F5;
}

#sources {
    margin-top: 40px;
}

#sources-type, #ins-sources, #users-role {
    float: left;
    width: 37.5%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#sources-name, #ins-name, #users-email {
    float: right;
    width: 62%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#sources-back {
    margin-bottom: 20px;
}

#sources-table {
    font-size: 14px;
    margin-top: 20px;
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
}

#sources-table .row {
    display: table-row;
    padding-top: 4px;
    padding-bottom: 4px;
}

#sources-table .cell {
    display: table-cell;
    padding: 2px;
}

#sources-table .name {
    width: 50%;
}

#sources-table .channel {
    width: 30%;
}

#sources-table .type {
    width: 15%;
}

#sources-table .link {
    cursor: pointer;
    color: #039;
}

#sources-table .del {
    width: 5%;
}

#sources-type {
    width: 37.5%;
}

#sources-connect {
    padding-left: 150px;
}

#sources-update {
    font-size: 15px;
}

#sources-connect button {
    padding: 5px;
    width: 350px;
    font-size: 15px;
}

#sources-sql select {
    margin-bottom: 20px;
}

#sources-sql input {
    font-size: 13px;
}

#sources-files span {
    margin-left: 8px;
}

.title-left {
    float: left;
}

.title-right, #sources-title-right, #ins-title-right {
    float: right;
}

.sources-sql-prop {
    width: 120px;
    float: left;
    text-align: right;
    padding-right: 10px;
    padding-top: 5px;
}

#sources-sql input {
    width: 430px;
}

.sources-delete {
    float: right;
    margin-top: 20px;
    cursor: pointer;
}

.sources-sample-img {
    width: 22px;
    margin-top: 10px;
}

.select-dims {
    text-align: right;
    margin-top: 0;
    margin-bottom: -10px;
    margin-right: 10px;
}

.select-dims-join {
    text-align: right;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.sources-join-keyline {
    display: none;
    margin-top: 5px;
    margin-bottom: 0px;
}

.sources-join-text {
    display: inline-block;
    min-width: 40px;
}

.sources-join-line {
    margin-top: 30px;
}

.sources-join-left, .sources-join-right, .sources-join-type, .sources-join-eq {
    height: 28px;
    padding-top: 2px;
}

.sources-join-left, .sources-join-right {
    max-width: 200px;
}

.sources-join-eq {
    background-image: none;
    padding-left: 10px;
    padding-right: 0px;
    border-left: none;
    border-right: none;
}

.sources-join-right, .sources-join-eq {
    border-radius: 0;
}

#sources-semantic select {
    font-size: 14px;
}

#sources-semantic textarea {
    font-size: 14px;
    width: 100%;
    margin-top: 20px;
}

#semantic-cols-0 {
    margin-top: 20px;
}

.semantic-line {
    clear: both;
    padding: 4px;
    font-size: 14px;
}

.semantic-name {
    float: left;
    width: 31%;
    text-align: right;
    padding-right: 5px;
    padding-top: 5px;
}

.semantic-rename {
    float: left;
    width: 48%;
}

.semantic-rename input {
    font-size: 14px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sources-coltype {
    width: 17%;
    margin-left: 3px;
    font-size: 14px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 4px;
    margin-right: 2px;
}

.sources-comment {
    margin-bottom: 10px;
}

#sources-group {
    padding-top: 0px;
}

#sources-group .title {
    padding-top: 5px;
    padding-bottom: 5px;
}

#sources-group span {
    margin-right: 10px;
}

.sources-tooladd {
    display: none;
    margin-top: 20px;
    margin-left: 20px;
}

.sources-tooladd span {
    margin-right: 20px;
}

#sources-sample {
    margin-top: 20px;
    text-align: center;
}

#sources-data {
    margin-top: 20px;
    margin-left: 50px;
    padding: 0 10px;
    font-size: 13px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.data-block {
    margin-bottom: 50px;
    margin-left: 50px;
    padding: 0 10px;
    font-size: 13px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.data-table {
    padding: 5px;
    border: 1px solid #000;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #fff;
}

.data-row {
    border-bottom: 1px solid #ddd;
    border-top: none;
}

.data-col, .data-col-first {
    float: left;
    width: 150px;
    height:100% !important;
}

.data-col-first {
    font-weight: 600;
    border-bottom: 1px solid #000;
    margin-bottom: 4px;
}

#prefs-msg {
    text-align: center;
}

#prefs-form {
    margin-bottom: 30px;
}

#prefs-form select, #prefs-form input {
    width: 350px;
}

.prefs-left {
    width: 160px;
    float: left;
    text-align: right;
    padding-right: 10px;
    padding-top: 5px;
    font-size: 15px;
}

#prefs-updatepass {
    display: none;
}

#bottom, #bottom-back {
    display: none;
}

.dialog {
    position: absolute;
    display: none;
    padding: 30px 50px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10002;
}

.dialog h5 {
    margin: 0 0 20px 0;
    padding: 0;
}

.dialog h4 {
    margin: 0 0 30px 0;
    padding: 0;
}

.dialog button {
    width: 49%;
}

#dialog-alert button {
    width: 100%;
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.dialog .tool {
    margin-bottom: 10px;
}

.dialog .tool input, .dialog .tool select {
    width: 100%;
}

.dialog .msg {
    text-align: center;
    padding-top: 10px;
}

.movedialog, .smovedialog {
    position: absolute;
    display: none;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    z-index: 3;
    top: 0px;
    height: 100vh;
    padding: 17px 30px 30px 30px;
    background-color: #fff;
    border-top: 2px solid #0080AA;
    overflow-y: scroll;
}

.movedialog {
    left: 250px;
    animation: move_right 0.2s;
}

.smovedialog {
    left: 50px;
    animation: smove_right 0.2s;
}

@keyframes move_right {
    0% { left: 0px; }
    100% { left: 250px; }
}

@keyframes smove_right {
    0% { left: -250px; }
    100% { left: 50px; }
}

#dialog-filter .dialog-ok {
    width: 49%;
    float: left;
}

#dialog-filter .dialog-cancel {
    width: 49%;
    float: right;
}

#filter-content {
    min-height: 400px;
}

#filter-list {
    background: none;
    height: auto;
    font-size: 13px;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
    border-radius: 8px;
}

#filter-list option {
    padding: 2px 10px;
    border-radius: 8px;
}

#dialog-save input {
    width: 85%;
}

#dialog-save label {
    width: 15%;
    text-align: right;
    padding-right: 5px;
}

#admin-search {
    font-size: 14px;
    padding-left: 20px;
}

#admin-searchmode {
    color: #039;
    margin-left: 10px;
}

#users-table {
    width: 700px;
    font-size: 14px;
    margin-bottom: 20px;
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
}

#users-table .row {
    display: table-row;
    padding-top: 4px;
    padding-bottom: 4px;
}

#users-table .cell {
    display: table-cell;
    padding: 2px;
}

#users-table .email {
    width: 40%;
}

#users-table .first {
    width: 15%;
}

#users-table .name {
    width: 30%;
}

#users-table .role {
    width: 13%;
}

#users-table .del {
    width: 2%;
}

#users-table .combo {
    font-size: 14px;
}

#dialog-users .cont {
    padding-top: 20px;
}

#users-msg {
    text-align: right;
    font-size: 13px;
    height: 20px;
    color: #a00;
    clear: both;
}

#users-url {
    display: none;
    margin-top: 40px;
    font-size: 14px;
}

#sub-button button {
    width: 49%!important;
}

#sub-name {
    font-size: 18px;
}

#dialog-groups .cont {
    padding-top: 0px;
    padding-bottom: 0px;
}

#groups-name, #keys-name {
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#groups-users, #keys-groups {
    min-height: 360px;
}

#groups-list, #keys-list {
    background: none;
    height: auto;
    font-size: 13px;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#groups-list option, #keys-list option {
    padding: 2px 20px;
    border-radius: 8px;
}

.groups-div {
    border: 1px solid #E7E7E7;
    border-radius: 18px;
    margin-bottom: 20px;
}

.groups-div .title {
    padding: 10px;
    background-color: #F5F5F5;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.groups-div .title-left {
    float: left;
    padding-left: 10px;
}

.groups-div .title-right {
    float: right;
}

.groups-div .plus {
    padding-left: 10px;
}

.groups-div ul {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.groups-div li {
    font-size: 14px;
}

#keys-table, #billing-list, #credits-list {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    display: table;
    border-collapse: separate;
    border-spacing: 5px;
}

#keys-table .row, #billing-list .row, #credits-list .row {
    display: table-row;
    padding-top: 4px;
    padding-bottom: 4px;
}

#keys-table .cell, #billing-list .cell, #credits-list .cell {
    display: table-cell;
    padding: 2px;
}

#keys-table .name {
    width: 30%;
}

#keys-table .val {
    width: 20%;
}

#keys-table .name span {
    cursor: pointer;
    color: #039;
}

#keys-table .groups {
    width: 45%;
}

#keys-table .del {
    width: 5%;
}

#keys-example {
    margin-top: 50px;
    padding: 20px;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
}

#billing-method {
    float: left;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#billing-method img {
    margin-top: -5px;
    margin-left: 10px;
    margin-right: 10px;
    height: 32px;
}

#billing-change {
    float: left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 0;
    padding: 4px 20px;
}

#dialog-newkey .cont {
    padding-top: 20px;
    padding-bottom: 20px;
}

#dialog-newkey input {
    width: 95%;
    font-size: 13px;
    padding: 20px;
}

#form-slack {
    margin-top: 20px;
}

#form-slack input, #form-slack textarea {
    width: 100%;
    margin-bottom: 10px;
}

#form-slack textarea {
    height: 75px;
    font-size: 14px;
}

#slack-channels input {
    width: 100%;
}

#slack-channels .left {
    float: left;
    width: 39%;
    text-align: right;
    padding-top: 4px;
}

#slack-channels .right {
    float: right;
    width: 60%;
}

.vcenter {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#signup, #signemail, #signcode {
    display: none;
}

.signup {
    width: 450px;
    padding: 20px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

.signup h3, .signup h5 {
    margin-bottom: 30px;
}

.signup input {
    width: 100%;
    padding: 20px 10px;
}

.signup .left {
    width: 40%;
    float: left;
}

.signup .right {
    width: 58%;
    float: right;
}

.signup .link-right {
    float: right;
    padding-top: 5px;
}

.signup a {
    text-decoration: none;
}

.signup .error {
    color: #a00;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.signup button {
    width: 100%
}

#signup-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px;
}

#signup-bottom a {
    text-decoration: none;
}

#pricing {
    display: none;
    padding: 0 70px;
}

#pricing h1 {
    text-align: center;
    font-size: 56px;
    font-weight: 600;
    color: #214478;
    margin-bottom: 80px;
}

#pricing .box {
    padding: 40px 20px;
    text-align: left;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fefefe;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
  }
  
  #pricing .box h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    color: #214478;
    margin-bottom: 10px;
  }
  
  #pricing .box h5 {
    font-size: 16px;
    color: #333;
    min-height: 42px;
  }
  
  #pricing .box h6 {
    font-size: 16px;
    color: #666;
  }
  
  #pricing .box h4 {
    text-align: center;
    font-size: 42px;
    color: #0080AA;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
  }
  
  #pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  #pricing .box h4 span {
    color: #aaa;
    font-size: 16px;
    font-weight: 300;
  }
  
  #pricing .box ul {
    margin-top: 10px;
    padding: 0;
    list-style: none;
    color: #214478;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  
  #pricing .box ul li {
    padding-bottom: 16px;
  }
  
  #pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  
  #pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
  }
  
  #pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 4px;
    color: #0080AA;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #0080AA;
  }
  
  #pricing .box .btn-buy:hover {
    background: #0080AA;
    color: #fff;
  }
  
  #pricing .featured {
    background: #0080AA;
  }
  
  #pricing .featured h3,
  #pricing .featured h4,
  #pricing .featured h4 span,
  #pricing .featured h5,
  #pricing .featured ul,
  #pricing .featured ul .na {
    color: #fff;
  }
  
  #pricing .featured .btn-wrap {
    padding: 15px;
    text-align: center;
  }
  
  #pricing .featured .btn-buy {
    color: #fff;
    border: 2px solid #fff;
  }
  
  #pricing .featured .btn-buy:hover {
    background: #fff;
    color: #0080AA;
  }

  #pricing a {
    text-decoration: none;
  }

#pricing .box select {
    width: 100%;
}

#pricing .featured select {
    color: #fff;
    border: 1px solid #fff;
    background-color: #0080AA;
}

#pricing .credits {
    color: #333;
    height: 48px;
}

#pricing .featured .credits {
    color: #fff;
}

#card {
    display: none;
}

#card h1 {
    text-align: center;
    font-size: 56px;
    font-weight: 600;
    color: #214478;
    margin-bottom: 20px;
}

#card h2 {
    text-align: center;
    font-size: 24px;
}

#card h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #214478;
    margin-top: 40px;
}

.checkout {
    padding-top: 40px;
}

#connect {
    padding: 0;
}

#connect h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #214478;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#slides {
    padding-top: 40px;
}

#slides .slide, #slides .speak {
    width: 95%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

#slides .slide {
    height: 450px;
}

#slides .slide textarea {
    border: none;
    appearance: none;
    resize: none;
    overflow: hidden;
}


#slides .speak {
    border-radius: 10px;
    margin-top: 4px;
    background-color: #444;
    color: #fff;
}

#slides .speak textarea {
    width: 100%;
    border: none;
    appearance: none;
    overflow: hidden;
    background: inherit;
    color: inherit;
    border-radius: inherit;
    padding: 10px;
}

#slides .center {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

#slides .intro {
    font-size: 32px;
}

#slides .ltitle {
    border: 1px solid #E7E7E7 !important;
    background-color: #fff;
    color: #000;
    border-radius: 32px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 32px;
    max-width: 100%;
    text-align: center;
    height: 54px;
    min-width: 10px;
}

#slides .backimage {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

#slides .separator {
    height: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #fafafa;
}

#pres-top-left {
    float: left;
    margin-top: 10px;
}

#pres-top-left a {
    text-decoration: none;
    color: #000;
}

#pres-top-left span {
    margin-left: 20px;
}

#pres-top-right {
    float: right;
    margin: 10px;
}

#plus-prefs {
    position: fixed;
    bottom: 20px;
    width: 250px;
}

#pane-slides {
    font-size: 15px;
}

/*#courses {
    padding: 40px;
}

#courses .course {
    float: left;
    width: 250px;
    min-height: 100px;
    padding: 10px;
    text-align: left;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
    background-color: #F5F5F5;
    border-radius: 18px;
    margin-right: 20px;
    margin-bottom: 20px;
}

#courses .course .name {
    height: 60px;
}

#courses .left {
    float: left;
    margin-left: 10px;
}

#courses .right {
    float: right;
    margin-right: 10px;
}

#courses .plus {
    opacity: 0.6;
}

#courses .plus:hover {
    opacity: 0.46;
}

#newcourse textarea {
    width: 100%;
    resize: none;
}

#course-name {
    margin-top: 20px;
    width: 100%;
}

#course-inst {
    height: 200px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#course-audience {
    height: 100px;
    border-radius: 0;
}

#course-size {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 20px;
    width: 100%;
}

#course-agent {
    text-align: center;
    margin-top: 20px;
}

#course-edit {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}
*/

#page button, .insight button {
    width: 100%;
}

#top-profile {
    text-align: center;
    margin-bottom: 30px;
}

#profile input {
    width: 100%;
}

#profile select {
    text-align-last: center;
}

#profile .title {
    text-align: center;
    margin-bottom: 10px;
}

#profile textarea {
    width: 100%;
    min-height: 58px;
    resize: none;
    display: block;
    margin-bottom: 25px;
}

#profile-copy {
    border-bottom: none;
    width: 100%;
}

#profile-image-model {
    width: 50%;
    border-bottom: none;
    border-left: none;
}

#profile-image-style {
    width: 50%;
    border-bottom: none;
}

#profile-who_title, #profile-who_company {
    border-bottom: none;
}

#profile-goal_img {
    margin-bottom: 0!important;
}

#profile-logo {
    position: relative;
    margin-top: 0!important;
    border-top: none;
    padding: 15px;
}

#profile-logo-img {
    display: none;
    cursor: pointer;
}

#profile-logo-del {
    position: absolute;
    top: 5px;
    right: 5px;
}

#profile-logo-size {
    margin-left: 20px;
}

#profile-logo-dim {
    white-space: nowrap;
}

#draft select {
    width: 100%;
    padding-left: 15px;
    height: 40px;
}

#draft textarea {
    width: 100%;
    min-height: 40px;
    padding: 10px 15px;
    resize: none;
}

#draft-links {
    float: left;
    text-align: right;
    margin-top: 28px;
    margin-left: 20px;
    width: 550px;
}

#draft-keywords {
    margin-bottom: 20px;
    text-align: center;
}

#draft-keywords span, #draft-links span {
    margin-right: 20px;
}

#draft-content {
    display: none;
    position: relative;
    width: 570px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    border-radius: 18px;
    background-color: #fafafa;
}

#draft-content span, #draft-new span {
    margin-right: 20px;
}

#draft-content textarea {
    border-radius: 0;
    border-right: none;
}

#draft-content .tool {
    position: absolute;
    right: 0px;
    top: 7px;
}

#draft-view {
    width: 50%!important;
    border-bottom: none;
    text-align-last: center;
}

#draft-linkedin, #draft-twitter {
    border-top: 1px solid #ddd;
}

#draft-img {
    border-left: 1px solid #ddd;
}

.content-img {
    position: relative;
    cursor: pointer;
}

.content-logo {
    position: absolute;
    padding: 4px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
}

.content-download {
    position: absolute;
    top: 10px;
    right: -60px;
}

.content-logo:hover {
    padding: 0px;
    border: 4px dashed #ddd;
}

#draft-elem {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    border-right: none;
}

#draft-elem-source {
    margin-right: 8px!important;
}

#draft-text {
    font-family: Sans-Serif;
    border-top: none;
    border-bottom: none;
}

#draft-twitter textarea, #draft-twitter-next textarea {
    font-family: Sans-Serif;
    font-size: 14px;
    display: block;
}

#draft-status, #draft-wait,
#twitter-text-status, #twitter-text-wait,
#twitter-img-status, #twitter-img-wait,
#linkedin-text-status, #linkedin-text-wait,
#linkedin-img-status, #linkedin-img-wait {
    text-align: center;
}

#draft-copy {
    position: absolute;
    top: 50px;
    right: -60px;
}

.draft-suggest {
    margin-bottom: 40px;
}

.draft-suggest .label {
    text-align: center;
    padding: 5px;
    color: #214478;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background-color: #FAFAFA;
}

.draft-suggest .next, .draft-suggest .nextwait {
    text-align: center;
    font-size: 14px;
    padding: 3px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background-color: #FAFAFA;
    cursor: pointer;
}

.draft-suggest .next:hover {
    background-color: #0080AA;
    border-color: #0080AA;
    color: #fff;
}

.draft-suggest .list {
    border: 1px solid #ddd;
}

.draft-suggest .list .title {
    font-size: 14px;
    padding: 4px 10px;
    cursor: pointer;
}

.draft-suggest .list .title:hover {
    color: #fff;
    background-color: #0080AA;
}

.draft-suggest .list .pair{
    background-color: #F5F5F5;
}

#draft-idea {
    font-size: 14px;
    display: block;
}

#draft-idea-button {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#draft-pdf {
    position: relative;
}

#draft-pdf .intro {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 32px;
    padding: 24px;
    line-height: 50px;
    color: #fff;
}

#draft-pdf .text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    padding: 24px;
    line-height: 50px;
    color: #fff;
}

#draft-pdf .title {
    position: absolute;
    top: 10px;
    text-align: center;
    font-size: 32px;
    width: 100%;
    color: #fff;
}

#draft-right, #draft-left {
    position: absolute;
    cursor: pointer;
    font-size: 22px;
    padding: 4px;
    color: #fff;
    top: 45%;
    z-index: 1;
}

#draft-right {
    right: 0;
}

#draft-left {
    left: 0;
}

#draft-source {
    display: none;
    text-align: left;
    font-size: 14px;
}

#draft-new-div {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    border-radius: 18px;
}

#draft-new-view {
    width: 30%;
    height: 40px;
    text-align-last: center;
}

#draft-new-copy {
    width: 70%;
    height: 40px;
    text-align-last: center;
    border-left: none;
}

#draft-new-elem {
    background-color: #fafafa;
    border-top: none;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 15px;
    height: auto;
}

#dialog-profile-company textarea, #dialog-profile-perso textarea {
    width: 100%;
    height: 100px;
}

#dialog-profile-company input, #dialog-profile-employee input {
    width: 100%;
}

#dialog-profile-employee .tool {
    margin-bottom: 40px;
}

#dialog-draft button {
    width: 30%;
}

#dialog-image textarea {
    width: 100%;
    height: 300px;
    font-size: 14px;
    resize: none;
    border-top: none;
}

#dialog-image select {
    text-align-last: center;
}

#dialog-image button {
    width: 32%;
}

#dialog-image-style {
    width: 50%;
}

#dialog-image-model {
    width: 50%;
}

#dialog-graph-color {
    width: 100%;
}

#dialog-linkedin-page input {
    width: 100%;
}

#dialog-publish label {
    font-weight: 600;
}

#dialog-publish p {
    margin-left: 20px;
}

#dialog-publish-public .tool {
    margin-bottom: 20px;
}

#dialog-publish-public .desc {
    width: 100%;
    height: 60px;
    resize: none;
}

#dialog-published input {
    padding: 20px;
}

#dialog-published .button-green {
    width: 50%;
    display: inline-block;
    margin-top: 0;
    text-decoration: none;
}

#dialog-published .bleft {
    border-right: 1px solid #ddd;
}

#dialog-published .dialog-ok {
    width: 100%;
}

#dialog-schedule .tool {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 18px;
    margin-bottom: 30px;
}

#dialog-schedule .timezone {
    width: 200px;
}

#dialog-schedule .sep {
    margin-top: 10px;
}

#dialog-post-date {
    width: 105px;
    font-size: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#dialog-schedule .hours, #dialog-schedule .minutes {
    width: 40px;
    padding-left: 5px;
}

#dialog-schedule .hours {
    border-radius: 0;
}

#dialog-schedule .minutes {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#schedule-list textarea {
    width: 100%;
    resize: none;
}

#schedule-list span {
    margin-left: 20px;
}

#schedule-list .day {
    width: 100px;
}

#schedule-list .timezone {
    border-left: none;
    width: 150px;
    font-size: 13px;
    height: 34px;
}

.content .frame .schedule-net {
    padding: 10px;
    border-top-right-radius: 18px;
    border: 1px solid #B6DBFC;
    background-color: #E9F6FE;
    margin-bottom: 0;
}

.content .frame .schedule-tool {
    margin-top: 0;
    padding: 10px;
    border-radius: 0;
    border-bottom: none;
    background-color: #fff;
}

.content .frame .schedule-title {
    margin-top: 0;
    padding: 10px;
    background-color: #fff;
}

#schedule-list .schedule {
    position: relative;
    border: 1px solid #ccc;
    background-color: #fafafa;
    margin-bottom: 20px;
}

#schedule-list .schedule .delete {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

#schedule-msg {
    text-align: center;
    margin-top: 20px;
}

#connect .content {
    display: none;
}

#connect .connection, #connect .notconnection {
    width: 250px;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-top: 30px;
    background-color: #fafafa;
}

#connect .connection {
    border: 1px solid #0080AA;
    color: #0080AA;
}

#connect .notconnection {
    border: 1px solid #ccc;
    color: #888;
}

#connect .connection img, #connect .notconnection img {
    height: 32px;
    margin-bottom: 10px;
}

#connect-linkedin {
    float: left;
}

#connect-page-linkedin {
    float: left;
    width: 350px;
    margin-top: 70px;
}

#connect-page-linkedin input {
    width: 100%;
    font-size: 14px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.llmform input[type="text"], .llmform select {
    display: block;
    width: 100%;
}

.llmform label {
    border-bottom: none;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 18px;
    color: #214478;
}

.llmform input[type="radio"] {
    display: inline-block;
    width: auto;
    vertical-align: text-top;
    accent-color: #0080AA;
    width: 16px;
    height: 16px;
}

.llmform input:checked[type="radio"] {
    background-color: #0080AA;
}

.llmform input[type="file"] {
    padding: 0;
    border: none;
    border-radius: 0;
    width: auto;
}

.llmform .filename {
    font-size: 15px;
    margin-right: 20px;
    cursor: pointer;
}

.llmform textarea, .llmform .list, .llmform input[type="text"], .llmform input[type="date"], .llmform input[type="datetime-local"], .llmform input[type="time"], .llmform select, .llmform .more, .llmform .check {
    margin-bottom: 30px;
}

.llmform .list {
    border-radius: 18px;
    padding: 10px 20px;
}

.llmform .list .lbreak {
    border-bottom: 1px solid #ddd;
    height: 10px;
    margin-bottom: 0px;
}

.llmform .list .tbreak {
    padding-top: 0px;
    padding-bottom: 15px;
}

.llmform select {
    padding: 5px 20px;
    height: 40px!important;
}

.llmform .output {
    font-size: 15px;
    margin-top: -10px;
}

.llmform .more {
    text-align: center;
    font-size: 14px;
    color: #214478;
    padding: 3px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background-color: #FAFAFA;
    cursor: pointer;
}

.llmform .more:hover {
    background-color: #E9F6FE;
    border-color: #B6DBFC;
}

.llmform .onoff {
    margin-right: 20px;
}

.llmform .mlist .line {
    position: relative;
    font-size: 14px;
    padding: 4px 20px;
}

.llmform .mlist .line:nth-child(even) {
    background-color: #F5F5F5;
}

.llmform .mlist .line:last-child {
    border-bottom: 1px solid #ddd;
}

.llmform .list .tool {
    padding: 10px 20px;
}

.llmform .mlist .line .plus {
    position: absolute;
    right: 10px;
    top: 3px;
}

#queries span {
    margin-right: 20px;
    display: inline-block;
}

#models {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
}

#models select {
    font-size: 13px;
    cursor: pointer;
    height: 26px;
    padding-top: 2px;
    margin-right: 1px;
}

.agents {
    padding-top: 50px;
}

.agents .list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.agents h4 {
    text-align: center;
    margin-bottom: 30px;
}

.agents .icon {
    position: relative;
    text-align: center;
    width: 140px;
    cursor: pointer;
    margin-bottom: 20px;
}

.agents svg, .agents .new {
    border-radius: 18px;
    border: 1px solid #ddd;
    padding: 0px;
}

.agents .new {
    padding: 20px;
}

.agents .del {
    display: none;
    position: absolute;
    top: 0px;
    right: 10px;
}

.agents .name {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    font-weight: 600;
}

#agents .elem {
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 18px;
    cursor: pointer;
}

#agents .elem:hover {
    border-color: #ddd;
}

#agents svg {
    float: left;
    margin-right: 20px;
}

#agents .text {
    float: left;
    width: 350px;
}

#agents .desc {
    font-size: 14px;
}

#agents .title {
    font-weight: 600;
}

#wall-img svg, #app-img svg {
    padding: 0px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#home-agent h2 {
    text-align: center;
}

#home-agent .back {
    position: fixed;
    left: 160px;
    top: 60px;
}

#form-home {
    position: relative;
    max-width: 600px;
    margin: auto;
}

#form-home textarea {
    font-size: 15px;
    border: 2px solid #ddd;
    padding: 10px 20px 25px 20px!important;
    border-radius: 18px;
    min-height: 130px;
    width: 100%;
    resize: none;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.18);
    appearance: none;
    resize: none;
    display: block;
}

#tool-home {
    position: absolute;
    bottom: 2px;
    left: 2px;
}

#tool-home select {
    font-size: 14px;
    padding: 4px 23px 4px 15px;
    border-radius: 18px;
    height: 30px;
}

#send-home {
    position: absolute;
    bottom: 3px;
    right: 4px;
    width: 28px;
    cursor: pointer;
}

#tabs-home {
    display: inline-block;
    font-size: 14px;
    padding: 4px 0 4px 0;
}

#tabs-home span {
    padding: 5px 10px 5px 10px;
}

#select-home {
    display: none;
}

#dbapp-center {
    position: relative;
    display: table;
    margin: auto;
}

#dbapp-center .plus {
    margin-right: 20px;
}

#dbapp-tabs {
    display: inline-block;
    margin-right: 30px;
    margin-left: 20px;
}

#edit-agent .tool-right {
    position: absolute;
    top: 10px;
    right: -190px;
}

.tool-right span {
    margin-left: 10px;
}

#agent-tabs, #dbapp-tabs {
    margin-top: 10px;
}

#flow {
    display: none;
}

.question {
    width: 85%;
    border-top-right-radius: 0;
    border-right: none;
}

.question-type {
    width: 15%;
    text-align-last: center;
}

.question-name {
    width: 20%!important;
    border-right: none;
    border-top: none;
    text-align: center;
}

.question-response {
    border-top-left-radius: 0;
    width: 80%!important;
    border-top: none;
}

.question-list, .question-min, .question-max {
    border-top: none;
}

.question-list {
    margin-bottom: 0!important;
}

.question-symbole {
    border-top: none;
    text-align: center;
    border-right: none;
    width: 50%;
    border-top-left-radius: 0;
}

.question-min {
    border-top: none;
    text-align: center;
    border-right: none;
    width: 25%;
    border-top-left-radius: 0;
}

.question-max {
    border-top: none;
    text-align: center;
    width: 25%;
    border-top-right-radius: 0;
}

#form-questions .line {
    position: relative;
    margin-bottom: 30px;
}

#form-questions .delete {
    position: absolute;
    top: 2px;
    right: -25px;
}

#nodes {
    display: none;
    margin-top: 40px;
}

#nodes h2 {
    text-align: center;
}

#nodes textarea {
    width: 100%;
    min-height: 58px;
    resize: none;
    display: block;
    margin-bottom: 25px;
}

#nodes input, #nodes select {
    height: 33px!important;
}

#nodes button {
    width: 80%;
}

#nodes-frame {
    position: relative;
    border-radius: 18px;
    padding: 0px 40px 20px 40px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

#node-back {
    position: absolute;
    top: 10px;
    left: 10px;
}

#node-next, #node-add {
    position: absolute;
    top: 10px;
    right: 10px;
}

#node-delete {
    position: absolute;
    bottom: 27px;
    right: 30px;
}

#chat-refine {
    width: 50%;
    border-top-right-radius: 0;
}

#chat-model {
    width: 50%;
    border-top-left-radius: 0;
    border-left: none;
}

#chat-system {
    border-top: none;
}

#flow {
    padding: 20px;
}

#flow figure {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

#flow figure .node:hover {
    background-color: #fff;
    cursor: pointer;
}

#flow figure .node .plus {
    position: absolute;
    bottom: -25px;
    left: 60px;
}

#flow .key {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 5px;
}

#flow .link {
    color: #0080AA;
    border: solid 1px #0080AA;
    border-radius: 4px;
    cursor: pointer;
}

#mytable {
    min-width: 100%;
    width: auto;
    white-space: nowrap;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

#mytable th {
    padding: 10px 12px;
    text-align: left;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
}

#mytable td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    max-width: 700px;
    overflow: hidden;
}

#mytable td {
    cursor: pointer;
}

#mytable thead {
    background-color: #fff;
}

#mytable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

#mytable tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

#mytable tbody tr:hover {
    background-color: #f5f5f5;
}

#mykan {
    min-width: 100%;
    width: auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ddd;
}

#mykan th {
    padding: 10px 12px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

#mykan td {
    border-right: 1px solid #ddd;
    padding: 2px;
    vertical-align: top;
}

#mykan .box {
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#tool-top {
    padding-left: 10px;
    padding-bottom: 5px;
}

#tool-bottom {
    padding-top: 10px;
    padding-left: 20px;
}

#wall-tool {
    position: absolute;
    top: 20px;
    right: 20px;
}

#app-tool {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 10;
}

#app-tool .plus {
    background-color: #fff;
    border-top-left-radius: 8px;
    padding: 5px 8px 7px 8px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

#app-tool .plus:hover {
    background-color: #E9F6FE;
}

#app-tool select {
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0;
    border-top-left-radius: 8px;
}

#app-form h2 {
    position: absolute;
    left: 0px;
}

#app-form-quit {
    position: absolute;
    right: 12px;
    top: 3px;
}

#app-form-tool {
    position: absolute;
    right: 40px;
    top: 28px;
}

#app-form .props {
    padding-top: 60px;
}

.app-form-comp {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.app-form-comp .name {
    text-align: center;
}

.app-form-comp .add {
    margin-left: 20px;
}

.app-form-elem {
    position: relative;
    background-color: #F5F5F5;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.app-form-elem:first-child {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.app-form-elem:last-child {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom: none;
    margin-bottom: 10px;
}

.app-form-elem .del {
    position: absolute;
    top: 10px;
    right: 10px;
}

#over-chat {
    margin-top: 50px;
}

#dbapp-tabs {
    margin-bottom: 50px;
}

.edit-list-db {
    padding: 0;
    margin-bottom: 30px;
}

.edit-list-db .tool {
    position: absolute;
    top: 5px;
    right: 10px;
}

.edit-list-db .toolout {
    position: absolute;
    bottom: 45px;
    right: -55px;
}

.edit-list-db .tool span {
    margin-left: 5px;
}

.edit-list-db .version {
    font-size: 13px;
    margin-top: 2px;
}

.edit-list-db .elem {
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 18px;
}

.edit-list-db .elem:last-child {
    margin-bottom: 10px;
}

.edit-list-db .elem .title {
    padding: 10px;
    border: solid #ddd;
    border-width: 1px 1px 0px 1px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.edit-list-db .elem .titleg {
    padding: 10px;
    border: solid #B6DBFC;
    border-width: 1px 1px 0px 1px;
    background-color: #E9F6FE;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.edit-list-db .elem .name {
    padding: 0px 7px;
    border: none;
    background-color: inherit;
}

.edit-list-db .elem .desc, .edit-list-db .elem .descp {
    font-size: 15px;
    padding: 0px 10px 10px 10px;
    color: #666;
    border: solid #ddd;
    border-width: 0 1px 1px 1px;
}

.edit-list-db .elem .descp {
    padding: 10px 10px 0px 10px;
}

.edit-list-db .elem .desc:last-child {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.edit-list-db .elem .desca {
    font-size: 15px;
    padding: 10px 10px;
    border: none;
    width: 100%;
    resize: none;
    border: solid #ddd;
    border-width: 0 1px 1px 1px;
    display: block;
}

.edit-list-db .elem .querya {
    font-size: 15px;
    padding: 5px 42px 5px 10px;
    border: none;
    width: 100%;
    resize: none;
    border: solid #ddd;
    border-width: 0 1px 1px 1px;
    display: block;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.edit-list-db .elem .queryb {
    width: 32px!important;
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.edit-list-db .elem .queryb button {
    margin-top: 0!important;
}

.edit-add-db {
    margin: 0px 0 10px 10px;
}

.edit-add-db .plus {
    margin-right: 25px;
}

#object-show {
    font-size: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 18px;
    margin-bottom: 20px;
    background-color: #fff;
}

#object-show div {
    margin-bottom: 5px;
}

#object-show div:last-child {
    margin-bottom: 0px;
}

#app h2 {
    position: relative;
}

#app-assistant {
    padding-top: 50px;
}

#app-assistant-chat {
    position: relative;
}

#app-assistant-chat .edit {
    position: absolute;
    top: 5px;
    right: -110px;
}

#app-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px;
}

#app-actions .but {
    border-radius: 18px;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 7px;
}

#menu {
    position: fixed;
    border: 0 1px 1px 1px solid #ddd;
    border-radius: 0 0 18px 18px;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

#menu .plus {
    border-top: 1px solid #ddd;
    padding: 5px 10px;
}

#menu .plus:last-child {
    border-radius: 0 0 18px 18px;
}

#menu .plus:hover {
    background-color: #E9F6FE;
    border-color: #0080AA;
    opacity: 1;
}

#app-view .code button {
    /*background: #0080AA;
    border: none;
    color: #fff;*/
    width: auto;
}

/*#app-view .code button:hover {
    background: #214478;
    color: #fff;
}*/

#app-view .error {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0px;
    height: 40px;
    padding: 4px 0 0 10px;
    border-top: 1px solid #F7CAC7;
    background-color: #FDF1F0;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding-left: 250px;
}

#app-view .error .cross {
    position: absolute;
    left: 260px;
    bottom: 10px;
}

#app-table {
    margin-top: 10px;
}

#chatbot {
    padding-top: 20px;
    padding-bottom: 20px;
}

.modal-appcode {
    padding: 0px 10px 10px 10px!important;
    min-width: 400px;
}

#dialog-install-app .svg {
    float: left;
    background-color: #fff;
    border-radius: 18px;
}

#dialog-install-app svg {
    border-radius: 18px;
    border: 1px solid #ddd;
    padding: 0px;
}

#dialog-install-app .desc {
    float: right;
    width: 400px;
}

#dialog-connect a {
    display: inline-block;
    width: 49%;
    text-decoration: none;
}

#dialog-connect a {
    color: white;
}

#dialog-source-desc, #dialog-source-waitlist {
    width: 700px;
}

#dialog-source-desc button, #dialog-source-waitlist button {
    width: 49%;
}

#public-app {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#public-app button {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    background-color: #214478;
    border-radius: 18px;
    padding: 8px;
    cursor: pointer;
    width: 450px;
}

#public-app button:hover {
    background-color: #0080AA;
    transition: 0.4s;
}

#public-name {
    font-size: 40px;
    font-weight: 600;
    color: #214478;
}

#public-desc {
    font-size: 24px;
    color: #444;
}

#public-author {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

#app-frame {
    height: calc(100vh - 4px);
    width: calc(100vw - 54px);
    position: fixed;
    top: 4px;
    left: 54px;
    border: 1px solid #ddd;
    border-top-left-radius: 8px;
    box-shadow: -2px 0px 6px 0 rgba(60, 60, 60, 0.2);
    background-color: #fff;
}

#toolbar .plus {
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#edit-toolbar {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 8px;
}

#edit-toolbar .plus {
    padding-left: 10px;
}

#close-edit {
    position: fixed;
    top: 10px;
    left: 216px;
}

#tooledit, #tooledit textarea {
    width: 248px;
}

#select-view, #select-version, #select-version-ins {
    font-size: 13px;
    height: 28px;
    width: 218px;
}

#select-view {
    border-right: none;
}

#select-version, #select-version-ins {
    border-right: none;
}

#edit-view .plus, #edit-instance .plus {
    padding: 4px;
    padding-top: 3px;
    font-size: 13px;
}

#scroll-view, #scroll-instance {
    width: 100%;
    height: calc(100vh - 140px);
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 10px;
}

#desc-view, #desc-instance {
    font-size: 13px;
    color: #666;
    padding-left: 5px;
    padding-right: 5px;
}

#desc-edit-view {
    resize: none;
    font-size: 13px;
}

#edit-instance-commit {
    display: none;
    text-align: center;
}

#edit-instance-commit button {
    font-size: 14px;
    width: 100px;
}

#ask-ai {
    position: fixed;
    bottom: 8px;
    width: 100%;
    resize: none;
    font-size: 13px;
}

#ask-ai-query {
    width: 32px!important;
    position: absolute;
    bottom: 10px;
    left: 220px;
}

#tooledit .insight {
    font-size: 14px;
}

#tooledit .insight .user, #tooledit .insight .bot, #tooledit .insight .link, #tooledit .insight .next {
    width: auto;
}

#tooledit .insight .user {
    margin-bottom: 10px;
}

#tooledit .insight .user textarea, #tooledit .insight .user span {
    font-size: 14px;
}

#tooledit .insight input, #tooledit .insight textarea, #tooledit .llmform .list {
    font-size: 14px;
    border-top-right-radius: 0;
}

#tooledit .llmform label {
    font-size: 14px;
    width: 100%;
}

#tooledit .llmform textarea, #tooledit .llmform .list, #tooledit .llmform input[type="text"], #tooledit .llmform input[type="date"], #tooledit .llmform input[type="datetime-local"], #tooledit .llmform input[type="time"], #tooledit .llmform select, #tooledit .llmform .more, #tooledit .llmform .check {
    margin-bottom: 10px;
}

#edit-add {
    font-size: 13px;
    padding-left: 10px;
    padding-top: 10px;
}

#edit-top {
    display: none;
    position: fixed;
    left: 250px;
    top: -5px;
    width: calc(100vw - 252px);
}

#edit-db {
    position: fixed;
    width: calc(100vw - 252px);
    height: calc(100vh - 45px);
    left: 252px;
    top: 45px;
    overflow: scroll;
    padding: 20px;
}

#edit-db .frame {
    background-color: #fff;
}

#edit-db-code {
    height: calc(100vh - 45px);
    width: calc(100vw - 252px);
    position: fixed;
    top: 45px;
    left: 252px;
    border: 1px solid #ddd;
    border-top-left-radius: 8px;
    box-shadow: -2px 0px 6px 0 rgba(60, 60, 60, 0.2);
    background-color: #fff;
}

#pane-filetree {
    position: fixed;
    width: 250px;
    height: calc(100vh - 45px);
    left: 253px;
    top: 46px;
    overflow: scroll;
    padding: 10px;
    background-color: #FAFAFA;
    border-right: 1px solid #ddd;
    border-top-left-radius: 8px;
    font-size: 14px;
}

#filecontent {
    position: fixed;
    width: calc(100vw - 503px);
    height: calc(100vh - 45px);
    right: 0;
    top: 46px;
    font-size: 14px;
    padding: 10px;
    resize: none;
    border: none;
    white-space: pre;
}

#dialog-license-text {
    width: 100%;
    resize: none;
    font-size: 14px;
}
