body {
    /*background-color: #f7f7f7;*/
    background-color:#f5f5f5;
    font-family: Arial, sans-serif;
}

.login-network {
    text-align: center;
    margin-top: 5rem;
}

.login-network img {
    width: 10rem;
}

.login-network input {
    margin-top: 1rem;
    padding: 0.7rem;
    width: 15rem;
    border-radius: 0.5rem;
    outline: none;
    border: 2px solid white;
    box-shadow: 5px 7px 9px 0px rgba(161,156,156,0.5);
    -webkit-box-shadow: 5px 7px 9px 0px rgba(161,156,156,0.5);
    -moz-box-shadow: 5px 7px 9px 0px rgba(161,156,156,0.5);

}



.login-network input:focus{
    border: 2px solid #5D9BEB;
    transition-duration: 1s;
}

.login-network button {
    margin-top: 1rem;
    padding: 0.7rem;
    width: 7rem;
    border-radius: 0.5rem;
    outline: none;
    border: 2px solid whitesmoke;
    color: white;
    background-color: #5D9BEB;
    font-weight: bold;
}

.login-network button:hover {
    background-color: #4472ad;
    cursor: pointer;
}

.login-error {
    color: #e81717;
    font-weight: bold;
}

.topnav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 1rem 0 1rem;
    z-index: 200;
    box-sizing: border-box;
    background-color: #5e5e5e;
    color: white;
}

.topnav nav {
    display: flex;
    justify-content: space-between;
}

.topnav nav a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding-left: 1rem;
    padding-right: 1rem;
}

.topnav nav ul li a {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.topnav nav ul li a:hover{
    background-color: white;
    color: black;
}

.topnav nav a img{
    width: 3rem;
    
}

nav ul {
    list-style: none;
}

.dash-tools {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
    grid-gap: 20px;
    margin-top: 10rem;
    margin-bottom: 10rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.dash-tools .tool {
    box-shadow: 10px 10px 15px 0px rgba(204,204,204,0.75);
    -webkit-box-shadow: 10px 10px 15px 0px rgba(204,204,204,0.75);
    -moz-box-shadow: 10px 10px 15px 0px rgba(204,204,204,0.75);
    padding: 1rem;
    text-decoration: none;
    color: #4472ad;
    background-color: white;
    border-radius: 0.3rem;
}

.dash-tools .tool:hover{
    color: black;
    box-shadow: 10px 10px 15px 0px rgba(92,88,88,0.75);
    -webkit-box-shadow: 10px 10px 15px 0px rgba(92,88,88,0.75);
    -moz-box-shadow: 10px 10px 15px 0px rgba(92,88,88,0.75);
    transition-duration: 0.7s;
}

.dash-tools .tool img {
    width: 10rem;
}

.dash-tools .tool h1{
    font-size: 20px;
}
.dash-tools .tool h1 span {
    font-size: 12px;
    color: black;
    font-style: italic;
}


.header {
    text-align: center;
    margin-top: 10rem;
}

.header h1 span {
    font-size: 12px;
}
.btn-primary {
    padding: 10px;
    border: 2px solid #5D9BEB;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    background-color:#5D9BEB;
    color:white;
    text-decoration:none;
}
.btn-primary:hover{
    background-color:#4472ad;
    border: 2px solid #4472ad;
}

.btn-success {
    padding: 10px;
    border: 2px solid forestgreen;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    background-color: forestgreen;
    color: white;
    text-decoration: none;
}
.btn-success:hover{
    background-color: darkgreen;
    border: 2px solid darkgreen;
}

.break-in-table{
    background-color: white;
    padding: 1rem;
    border-radius: 0.2rem;
}

.break-in-table tr td, .break-in-table tr th{
    padding-left: 10px;
    padding-right: 10px;
}


.tool-textarea textarea {
    resize: none;
    height: 195px;
    width: 24rem;
    border: none;
    background: white;
    outline: none;
    padding: 10px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #e9e9e9 !important;
}

.tool-textarea textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.change-log {
    margin-left: 2rem;
}

.change-log h4 {
    margin-block-end: 0;
}

.change-log ul {
    margin-block-start: 0;
}

.text-success {
    color:green;
    font-style: normal;
}

.text-danger {
    color:darkred;
    font-style: normal;
}

.output-table {
    margin-left: auto;
    margin-right: auto;
    background: white;
    outline: none;
    padding: 10px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #e9e9e9 !important;
    width: 25rem;
}

.output-table tr th{
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 1px solid black;
}

.output-table tr td{
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 1px solid black;
}

.pub-sites-table{
    margin-left: auto;
    margin-right: auto;
    background: white;
    outline: none;
    padding: 10px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #e9e9e9 !important;
    width: 40rem;
}

.pub-sites-table tr th{
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 1px solid black;
    text-align: center;
}

.pub-sites-table tr td{
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 1px solid black;
    text-align: center;
}

.pub-sites-table .btn-primary{
    font-size: 12px;
}
.pub-sites-table tbody tr{
    height: 3rem;
}

.new-site-autoposter {
    width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    border: 1px solid rgb(165, 165, 165);
    padding: 0.5rem;
}

.new-site-autoposter input {
    padding: 10px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #e9e9e9 !important;
    margin: 0.5rem;
}

.new-site-autoposter button{
    width: 100%;
}

.input-box {
    width: 24.8rem;
    padding: 4px;
    border: none;
    background: white;
    outline: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #e9e9e9 !important;
}

.input-box:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}


@media screen and (max-width: 850px){
    .topnav .nav-menu{
        display: none;
    }
    
    .dash-tools .tool h1 {
        font-size: 12px;
    }
    
    .dash-tools .tool img {
        width: 5rem;
    }
    
    .dash-tools {
        display: grid;
        grid-template-columns: repeat( auto-fit, minmax(150px, 1fr) );
        grid-gap: 20px;
    }

}