.header {
    position: fixed;
    background-color: white;
    left: 50%;
    transform: translate(-50%, 0%);
}

body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}


.AppBanner {
    font-weight: normal;
    color: black;
    font-size: 32px;
    background-color: none;
    margin-top: 10px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}


.AppSection {
    display: flex;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 250px;
    border-style: solid;
    border-width: 0px;
    background-color: none;
}

.AppPanel {
    float: left;
    width: 400px;
    border-radius: 15px;
    border-color: rgb(10,115,10);
    border-style: solid;
    border-width: 2px;
    background-color: white;
    margin-bottom: 0px;
    display: flex;
}

.AppPanelLeft {
    margin: 10px;
    width: 170px;
    border: 0px solid;
}

.AppPanelRight {
    margin-left: 10px;
    margin-top: 50px;
    flex: 1;
    border: 0px solid;
}

.AppTitle {
    font-weight: normal;
    margin-left: 10px;
    color: black;
    font-size: 20px;
    display: block;
    white-space: nowrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.AppLogo {
    margin-top: 10px;
    margin-left: 10px;
    float: left;
}


.ButtonBase {
    border-color: rgb(13, 144, 13);
    border-radius: 50px;
    cursor: pointer;
    height: 30px;
    width: 180px;
    line-height: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: smaller;
}

.ButtonLan {
    font-size: 18px !important;
    width: 70px !important;
}


.Button1 {
    background-color: rgb(255,255,255);
    color: rgb(13, 144, 13);
}

.Button2 {
    background-color: rgb(0,81,114);
    color: white;
}

.ButtonAttention {
    background-color: rgb(3, 133, 2);
    color: white;
    animation: pulsate 1.5s infinite; /* Add the pulsating animation */
}


.InfoPanel {
    flex: 1;
    background-color: none;
    padding: 10px;
    margin-left: 10px;
    margin-left: 10px;
    border: 0px solid #ccc;
    overflow-y: auto;
}


.InfoText {
    font-size: 15px;
}

.Url {
    margin-top: 0px;
}


.wurDarkBlue {
    color: rgb(0,81,114);
}

.wurDarkGreen {
    color: rgb(0,124,114);
}

.black {
    color: black;
}

.gray {
    color: dimgray;
}

.green {
    color: green;
}

.red {
    color: red;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
}
