﻿.settings-page {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: 1fr;
}

.settings-page-tabs {
    grid-row: span 2;
    height: 100%;
    background-color: lightgray;
}

.settings-page-title {
    grid-column: span 2;
    background: linear-gradient(to right, #1f578a, #1f578a, #1f578a, #3472ab);
    border-bottom: 2px solid darkgray;
    text-align: left;
    line-height: 16px;
    color: white;
    padding: 4px 8px;
}

.settings-page-title > div {
    display: inline;
}

.title-link {
    cursor: pointer;
}

.settings-page-tabs-list {
    background-color: #f6f6f6;
    padding: 0px;
    margin: 0px;
    border-right: 1px solid darkgray;
    font-size: 0.8em;
    list-style-type: none;
}

.settings-page-tabs-list li {
    padding: 4px 6px;
    border-bottom: 1px solid darkgray;
    color: #777;
    cursor: pointer;
    padding-right: 20px;
}

.settings-page-tabs-list li:hover {
    color: black !important;
    background-color: lightgray;
}

li.settings-page-tabs-list-selected {
    color: black !important;
    background-color: lightgray;
    padding-right: 17px;
    border-left: 3px solid rgb(255, 165, 0);
}

.settings-page-container {
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    padding: 8px;
    position: absolute;
    overflow-y: scroll;
}

.settings-page-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.settings-page-footer {
    width: 100%;
    background-color: lightgray;
    padding: 4px 8px;
}

.form-check {
    width: 16px;
}

hr {
    margin-top: unset;
    margin-bottom: unset;
    border: 0;
    border-top: 1px solid lightgray;
    width: 100%;
}