main > .container {
    padding: 70px 15px 20px;
}
.site-index {
    padding: 10px;
}

#header {
    display: flex;
    width: 100%;
    align-items: baseline;
    justify-content: space-between;

    padding: 0 10px;
}
#header .caption {
    font-weight: bold;
    font-size: 36px;
    float: left;
}

#header .links {
    display: flex;
    gap: 1rem
}

#header .links a{
    margin-right: 10px;
}

.page-caption {
    margin-top: 20px;
}

.add-app-block {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: flex-end;
}

.apps-table {

}

.apps-table .cut-link a {
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

#app-form {
    margin-top: 20px;
}

#app-form .app-form-field {
    margin-bottom: 10px;
}
#app-form .app-form-field input,
#app-form .app-form-field textarea,
#app-form .app-form-field select
{
    width: 300px;
}

#app-form .app-form-field input:disabled,
#app-form .app-form-field select:disabled {
    background-color: rgb(240, 240, 240);
}

#app-form .app-form-field button {
    width: 150px;
}

#app-form .app-form-field select:enabled {
    background-color: white;
    border-color: black;
    border-width: 1px;
}






#app-form .app-form-field textarea {
    height: 150px;
    resize: none;
}

.field-error {
    color: red;
}

.apps-table table th {
    padding: 5px 15px;
    background-color: rgb(242, 242, 242);
    border-width: 1px;
    border-color: rgb(242, 242, 242);
    border-bottom-color: black;
}

.apps-table table td {
    padding: 5px 10px;
    border-width: 1px;
    border-color: black;
}

.commands-block {
    margin-top: 10px;
    margin-bottom: 100px;
}

.btn-blue {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1b98c7;
    --bs-btn-border-color: #1b98c7;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1b98c7;
    --bs-btn-hover-border-color: #1b98c7;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1b98c7;
    --bs-btn-active-border-color: #1b98c7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1b98c7;
    --bs-btn-disabled-border-color: #1b98c7;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}

.install-table table {
    width: 100%;
}
.left-link {
    margin-right: 20px;
}
.right-link {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}

.nav-pills-statistics{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}