@charset "UTF-8";

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
}

form {
    margin: 0;
    padding: 0;
    display: block;
}

.page {
    width: 100%;
    height: 100%;
    overflow: scroll;
}
.page .agent-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #cccccc;
    color: #ffffff;
}
.bar-container {
    padding: 6pt;
    display: flex;
    flex-direction: row;
}
.bar-container a {
    margin-left: 6pt;
    margin-right: 6pt;
}
.bar-container a:link {
    color: blue;
    background-color: lightgray;
    border-radius: 6pt;
    padding: 0 4pt;
}
.bar-container a:visited {
    color: blue;
}

.page-title {
    text-align: center;
}

#environment-label {
    color: #ff0000;
}

.content-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
}

.left-side {
    background-color: #232F3E;
    color: #ffffff;
    width: 25%;
}

.right-side {
    flex: 1 1 auto;
    background-color: #ffffff;
    color: #131A22;
}

.textarea-div {
    border: solid 1px #131A22;
    display: inline-block;
    background: #ffffff;
    color: #131A22;
    padding: 2pt;
}

#version {
    font-size: 8pt;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4pt;
}

.default-hidden {
    visibility: hidden;
    display: none;
}


@media (max-width: 640px) {
    
    html, body {
        height: 100%;
        width: 100%;    
    }
    
    .content-container {
        flex-direction: column;
    }
    
    .left-side {
        width: auto;
        border-bottom: 4px #8e8e8e solid;
    }
    
    .right-side {
        height: 60%;
    }
    
    input[type='text'],textarea {
        font-size:1em;
    }
}

.loader {
  display: inline-block;
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

