h2{
    font-size:1.2rem;
    font-weight: bold;
}
a, a:hover {
    text-decoration: none;
}
header, footer{
    background-color: #000718;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: white;
}
header h1{
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    margin-top: 18px;
}

nav.user{
    height: 50px;
    border-bottom: 1px solid rgb(116, 116, 116);
    background-color: #000718;
}

nav.user ul{
    display: flex;
    align-content: center;
    justify-content: center;
    height: 50px;
    align-items: center;
}
nav.user ul li{
    list-style: none;
    padding: 0 1rem;
}
nav.user li a{
    color:#c93;
}
nav.user li a:hover{
    color:#c93;
    text-decoration: underline;
}


.navbar-nav{
    width: 100%;
    justify-content: center;
}
nav.bg-light{
    background-color: #000718 !important;
    
}
.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
}
.navbar-light .navbar-toggler-icon{
    background-image: none;
    color: #fff;
}
.navbar-light .navbar-toggler {
    border-color: #fff;
}
.navbar-toggler{
    line-height: 1.5rem;
}

.content-wrapper{
    box-shadow: 2px 2px 7px 0 rgba(0,0,0,.3);
    border: 1px solid #999;
}


form.login, form.form{
    max-width: 30rem;
    margin: 0 auto 2rem auto;
}
form.login .form-group{
    text-align: left;
}
form.login .form-group label,
form.form .form-group label{
    font-weight: bold;
}

/* Liste mit Optionen */
.listing,
.listing-alt {
    border: 1px solid #ccc;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}
.listing li,
.listing-alt li {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 1rem; */
    border-bottom: 1px solid #ccc;
    padding: 1rem;
}
.listing li.green,
.listing-alt li.green{
    border-right: 2px solid green;
}
.listing li.red,
.listing-alt li.red{
    border-right: 2px solid red;
}

.listing li:hover,
.listing-alt li:hover {
    background-color: #ccc;
    cursor: pointer;
}

.optionen span{
    cursor: pointer;
    margin-right: 1rem;
}

.recipients{
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}
#adressbuch{
    border: 1px solid #ccc;
    cursor: pointer;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#recipients{
    flex-grow: 1;
    background: #ccc;
    padding: .5rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.recipient{
    display: flex;
    font-size: .7rem;
    background: whitesmoke;
    padding: .2rem;
    border-radius: 6px;
    margin-right: 1rem;
    margin-bottom: .2rem;
}
.delete{
    cursor: pointer;
    margin-right: .5rem;
}
#bar{
    width: 100%;
    border: 1px solid #ccc;
    height: 20px;
    font-size: .7rem;
    border-radius: 6px;
}
#bar .prozent {
    background-color: teal;
    width: 0px;
    height: 20px;
}
.selected::before {
    content: '\2713';
    color: green;
    display: inline-block;
    font-weight: bold;
}

.send-item{
    border: 1px solid #ccc;
    margin-bottom: .5rem;
    font-size: .75rem;
}
.send-item.active{
    box-shadow: 1px 1px 8px rgba(0, 0, 0, .3);
}
.send-item-date,
.send-item-subject,
.send-item-message{
    padding: .4rem;
}
.send-item-date{
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    display: flex;
}
.gesendet {
    flex-grow: 1;
}
#unread .send-item-date,
#unread .send-item-subject {
    font-style: italic;
}
#unread .send-item-button button{
    font-size: .75rem;
}
.send-item-subject{
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
#read .send-item-subject,
#trash .send-item-subject
{
    display: flex;
}
#read .send-item-subject .subject,
#trash .send-item-subject .subject
{
    flex-grow: 1;
}
#read .optionen{
    margin-right: 1rem;
}
#read .optionen span{
    display: inline-block;
}
.send-item-receivers,
.alle {
    border-bottom: 1px solid #ccc;
    font-size: .75rem;
    padding: .4rem;
}
.send-item-receiver{
    display: inline-block;
    padding: .2rem .5rem;
    border-radius: 6px;
    margin-right: .2rem;
    margin-bottom: .2rem;
}
.read{
    background-color: yellowgreen;
}
.unread {
    background-color: tomato;
}
#reload, 
#delete-all{
    margin-left: .5rem;
    cursor: pointer;
}
footer{
    margin-top: 2rem;
}
footer ul{
    display: flex;
}
footer li{
    list-style: none;
    margin: 1rem;
}
footer ul a,
footer ul a:hover{
    color: #fff;
}

.not-confirmed {
    background: rgba(255, 237, 86, 0.2);
}

.modal-body {
    max-height: 450px;
    overflow: hidden;
    overflow-y: auto;
}

#push-check {
    display: inline-block;
    cursor: pointer;
}

.new-user {
    background: yellowgreen;
}

.p{
    cursor: pointer;
}

#settings {
    margin-bottom: 2rem;
}