html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background: #efefef url('/images/bgs/patino-bg.png') no-repeat top;
    background-color: #efefef;
    margin-bottom: 60px;
}

.main-body {
    background: #fff url('/images/bgs/patino-bg.png') no-repeat top;
    background-color: #fff;
}

a {
  color:#198754;
  text-decoration:none;
}

.clickable:hover {
    background-color:#eee;
    cursor:pointer;
}

.elepaio-offcanvas-div {
    background-color: rgba(100, 100, 100, .1);
    cursor: pointer;
    padding: 15px;
}

    .elepaio-offcanvas-div:hover {
        background-color: rgba(70, 70, 70, .1);
    }

.api-offcanvas-div {
    background-color: rgba(100, 100, 100, .1);
    cursor: pointer;
    padding: 15px;
}

    .api-offcanvas-div:hover {
        background-color: rgba(70, 70, 70, .1);
    }

.chatgpt-input {
    border-radius: 1.5rem;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-size: 1rem;
}

    .chatgpt-input:focus {
        border-color: #8e8ea0;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(142, 142, 160, 0.2);
        outline: none;
    }

    .chatgpt-input::placeholder {
        color: #999;
    }

.chatgpt-input-wrapper {
    max-width: 700px;
    margin: 2rem auto;
}

.form-group > label {
    bottom: 34px;
    left: 15px;
    position: relative;
    background-color: white;
    padding: 0px 5px 0px 5px;
    font-size: 0.8em;
    font-weight: 600;
    transition: 0.2s;
    pointer-events: none;
    text-transform: uppercase;
}

.form-control:focus ~ label {
    bottom: 64px;
}

.form-control:valid ~ label {
    bottom: 64px;
}