:root {
    --RosRed: #E30613;
    --RosRedLight: #C05050;
}
.HomeBackground {
    height: 90vh;
    background-image: url(/images/ViertelRose.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 50%;
}
.myButton {
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--RosRed);
    border: 3px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.4rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .myButton:hover {
        color: white;
        background-color: var(--RosRedLight);
        border: 3px solid rgb(120, 0, 0);
        box-shadow: 0px 0px 15px var(--RosRed);
    }
.OKButton {
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: darkgreen;
    border: 3px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.4rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .OKButton:hover {
        color: white;
        background-color: forestgreen;
        border: 3px solid darkgreen;
        box-shadow: 0px 0px 15px green;
    }
.RedButton {
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--RosRed);
    border: 3px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.4rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.RedButton:hover {
    color: white;
    background-color: var(--RosRedLight);
    border: 3px solid rgb(120, 0, 0);
    box-shadow: 0px 0px 15px var(--RosRed);
}
/* copied from Bootstrap.min.css*/
.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: black;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}
.nav-link:focus, .nav-link:hover {
    color:  var(--RosRed);
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--RosRed);
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--RosRedLight);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255,0,0,.25)
}
.form-label{
    color: gray;    
}
.pop-container {
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(132, 4, 4, 0.77);
}

.popconfirm {
    color: white;
    background-color: gray;
    border-style: solid;
    border-width: 1px;
    border-color: lightblue;
    padding: 10px;
    border-radius: 15px;
    min-width: 250px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop-message-card, .pop-message-card div {
    background-color: rgba(0, 0, 0, 0.00)
}

.gradient-to-gray {
    background: linear-gradient(0deg,#000000,#888);
    color: #fff;
}

.btn-yes {
    background-color: darkgreen;
    color: limegreen;
    width: 100%;
}

.btn-no {
    background-color: darkred;
    color: lightcoral;
    width: 100%;
}

.MyTextArea{
    min-height:78px;
}