@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
    margin: 0 0 0 0;
    color: #000;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.question, .answer {
    padding: 30px;
    margin: 5px;
    text-align: left;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    width: calc(100% - 30px);
}

.question {
    background-color: #ddefff;
}

.answer {
    background-color: #FFF;
}

.question span, .answer span {
    margin: 0 1em;
    font-size: 18px;
    width: 100%;
}

.question textarea {
    font-size: 1.2em;
}

/* Set a fixed width and height for the icons */
.question i, .answer i {
    font-size: 1.5em;
    display: inline-block;
    width: 24px;  /* You can adjust the width and height */
    height: 24px;
    text-align: center;
    margin-right: 10px;
}

#submit-button {
    margin-left: 20px;
    background: #000;
    border: 2px solid #000;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    padding: 14px 32px;
    text-decoration: none;
    transition: all .1s ease-in-out;
    border-radius: 100px;
}

#submit-button:hover {
    background-color: #f8a700;
    border: 2px solid #f8a700;
}

#question-input {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    resize: none; /* Disable manual resizing */

    box-shadow: 0 14px 10px -4px rgba(195,216,235,.8);
    background: #fff;
    border: none;
    border-radius: 4px;
    display: block;
    font-size: 18px;
    height: 50px;
    line-height: inherit;
    outline: none;
    padding: 13px 10px;

    width: calc(94% - 100px);
}

.question i, .answer i {
    font-size: 1.2em;
}

a {
    color: white
}

a:hover {
    color: blue;
}

#header a {
    color: black;
}

#header a:hover {
    color: blue;
}

.links {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    width: 24px;
}
.links a {
    color: black;
    text-decoration: none;
}

#header {
    display: none;
    position: sticky;
    top: 0;
    background-color: #ccc; /* Optional: Add background color */
    z-index: 100; /* Optional: Add z-index to make it stack above other elements */
    font-size: medium;
    padding-left: 5px;
    padding-right: 5px;
}

span#cost {
    color: red;
}

.feedback {
    margin-left: 15px;
    width: 140px;
}

.feedback i {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    margin-right: 0;
}

.feedback i:hover {
    opacity: 1;
}

.feedback i.disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.feedback-laugh {
    color: rgb(56 206 56);
}

.feedback-smile {
    color: rgb(115, 235, 115);
}

.feedback-meh {
    color: #ffcd00;
}

.feedback-frown {
    color: salmon;
}

.fa-robot {
    color: #f8a700;
}
