﻿:root {
    --grid-height: 800px;
    /* Grey */
    --color1: #6c757d;
    /* Black */
    --color2: #000000;
    /* White */
    --color3: #ffffff;
    /* Blue */
    --color4: #0d6efd;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 1200px;
}

/** custom **/
.link-external {
    padding : 5px;
    text-align : left;
    background : var(--color1);
    color : var(--color3) !important;
    border-radius : 5px;
}

.record-info {
    color: var(--color1);
    font-size: 10px;
    text-align: right;
    height: 25px;
}

.icon-color {
    color : var(--color2);
}

.fontawesome-list {
    display: inline-block;
    margin-left: -40px;
    list-style: none;
}

.fontawesome-list-item {
    float: left;
    padding: 10px;
    width: max-content;
}

.icon-display-container {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--color2);
    padding: 5px;
}

.svg-image-before {
    border: 1px solid var(--color1);
    margin: 15px;
    border-radius: 5px;
}

.svg-image-after {
    border: 1px solid var(--color4);
    margin: 15px;
    border-radius: 5px;
}

.inactive-row {
    -webkit-opacity: 0.25; /* Older versions of Safari and Chrome */
    -moz-opacity: 0.25; /* Older versions of Firefox */
    -ms-opacity: 0.25; /* Older versions of Internet Explorer */
    -o-opacity: 0.25; /* Older versions of Opera */
    opacity: 0.25;
    filter: alpha(opacity=25); /* 25% opacity */
    filter: opacity(25%);
}

.textarea-structure {
    height: 500px;
    resize: none;
}