html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
     
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dotsuccess {
    height: 10px;
    width: 10px;
    background-color: forestgreen;
    border-radius: 50%;
    display: inline-block;
}

.dotfailure {
    height: 10px;
    width: 10px;
    background-color: darkred;
    border-radius: 50%;
    display: inline-block;
}

.heat {
    background-color: red!important;
}

.electricity {
    background-color: darkcyan!important;
}

.warm_water {
    background-color: orange!important;
}

.relaybgcolor {
    background-color: #273C9D!important;
}

.relayborder {
    background-color: #273C9D !important;
}

.facilitybgcolor {
    background-color: #1a427f!important;
}

.deumessbgcolor {
    background-color: #76B82A!important;
}

.deumessborder {
    border-color: #76B82A !important;
}

.deumesssend-button:hover {
    background-color: #76B82A!important;
}

.cursorpointer {
    cursor: pointer;
}

.languageicon {
    width: 32px;
    height: auto;
    padding: 4px;
    cursor: pointer;
}

#search-wrapper {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.276);
    align-items: stretch;
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
    max-width: 400px;
    box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, 0.273);
}

#search {
    border: none;
    width: 350px;
    font-size: 15px;
    padding-left: 30px;
}

#search:focus {
    outline: none;
}

.icon {
    width: 24px;
    height: auto;
}

.search-icon {
    margin: 10px;
    color: #ffffff;
}

#search-button {
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #db9912;
    padding: 0px 10px;
}

body {
  margin-bottom: 80px!important;
}

.bg-lightblue {
    background-color: lightblue;
}

.bg-lightcoral {
    background-color: lightcoral;
}

.bg-lightgrey {
    background-color: lightgray;
}

.bg-lightgreen {
    background-color: lightgreen;
}

.bg-lightpink {
    background-color: lightpink;
}

.vh-80 {
    height: 80vh;
}

/*.card {
    min-height: 70vh;
}*/

.cardrow {
    min-height: 70vh;
}

.loadingicon {
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#chat-container {
    width: 100%;
    height: 80vh; /* Vollständige Höhe der Ansicht */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

#chat-window {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

#chat-output {
    max-height: calc(100vh - 120px); /* Anpassung an die Höhe der Ansicht abzüglich des Eingabebereichs */
}

#chat-input-container {
    display: flex;
    padding: 10px;
    background-color: #f7f7f7;
}

#chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

#send-button {
    padding: 10px 15px;
    margin-left: 10px;
    border: none;
    background-color: lightgray;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#send-button:hover {
    background-color: #db9912;
}

#chart1 {
    max-width: 650px;
    margin: 35px auto;
}