/*Import google font for Logo*/
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

body {
    background-color: #181818;
}

body:has(#login-form) {
    margin: 0px;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* CSS for background animation login screen */
#icons-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.icon {
    position: absolute;
    color: #F1F1F1;
    opacity: 0; 
    animation: fall 25s linear infinite; 
}

@keyframes fall {
    0% { 
    opacity: 0; 
    }
    100% {
    transform: translateX(10vw) translateY(100vh); 
    opacity: 1;
    }
}

#login-form {
    background-color: #C05100;
    border-radius: 10px;
    max-width: 350px;
    min-height: 400px;
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-form > * {
    width: 100%;
}

#login-form > .title {
    text-align: center;
    font-family: "Alfa Slab One", serif;
    font-size: 3.5rem;
    margin-top: 0.5rem;
}

#login-form-inputs {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-form-inputs > * {
    width: 100%;
    padding: 12px 20px;
    margin: 1px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#login-form-inputs > input[type=submit] {
    border: 0px;
    background-color: #000000;
    color: #ECAA20;
}

.button {
    border-style: solid;
    border-color: #C05100;
    border-width: 1px;
    font-weight: bold;
    FONT-FAMILY: Arial;
    Font-Size: 16px;
    background-color: #ECAA20;
    cursor: pointer;
    border-radius: 5px;
    color: #000000;
    min-width: 45px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button:hover {
    background-color: #FFE680;
}

/* Missing Admin Button Classes */
.normal {
    border-style: solid;
    border-color: #C05100;
    border-width: 1px;
    font-weight: bold;
    FONT-FAMILY: Arial;
    Font-Size: 16px;
    background-color: #ECAA20;
    cursor: pointer;
    border-radius: 5px;
    color: #000000;
}

.hover {
    border-style: solid;
    border-color: #C05100;
    border-width: 1px;
    font-weight: bold;
    FONT-FAMILY: Arial;
    Font-Size: 16px;
    background-color: #FFE680;
    cursor: pointer;
    border-radius: 5px;
    color: #000000;
}

.horFlex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 1em;
}

.name.error {
    background-color: #C05100 !important;
}

.name.error:hover {
    background-color: #c03600 !important;
}

.money.error {
    color: #C05100 !important;
}

.NameList {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    border-style: dotted;
    border-color: #C05100;
    border-width: 5px;
    padding: 10px;
}

.NameList.Large {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 500px) {
    .NameList.Large {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .NameList.Large {
        grid-template-columns: 1fr 1fr;
    }
}

.NameList.Order {
    max-width: 750px;
}

@media only screen and (max-width: 600px) {
    .NameList {
        grid-template-columns: 1fr;
    }
}

.NameList>div {
    flex-grow: 1;
    flex-basis: 240px;
    padding: 5px;
}

.NameListItem {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.NameListItem>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.NameListItem>.name {
    flex-grow: 1;
}

.NameListItem>.money {
    padding: 5px;
    min-width: 75px;
}


.buttonList {
    max-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    padding: 10px;
    grid-auto-columns: 1fr
}

.buttonList>div {
    flex-grow: 1;
}

a {
    TEXT-DECORATION: none;
    color: #ECAA20;
}

a:visited {
    color: #ECAA20;
}

a:hover {
    color: #FFE680;
}

p,
.standard {
    COLOR: #FFFFFF;
    FONT-FAMILY: Arial;
    Font-Size: 18px;
    text-align: center;
    TEXT-DECORATION: none
}

/* specials */
.a_button {
    COLOR: #000000;
}

.font_fout {
    COLOR: #C05100;
}

.font_small {
    Font-Size: 16px;
}

.font_highlight {
    color: #ECAA20;
}

.p.knop {
    COLOR: #000000;
    FONT-FAMILY: Arial;
    Font-Size: 16px;
    text-align: center;
    TEXT-DECORATION: none
}

/* CSS Jesse */
ul {
    list-style-type: none;
    line-height: 25px;
}

li {
    COLOR: #FFFFFF;
    FONT-FAMILY: Arial;
    Font-Size: 18px;
    TEXT-DECORATION: none
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.tekst {
    COLOR: #FFFFFF;
    FONT-FAMILY: Arial;
    Font-Size: 18px;
    TEXT-DECORATION: none
}

.list-group {
    display: flex;
    justify-content: center;
}