body {
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0px;
}

h1 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: yellow;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button, .button {
    color: black;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 2;
    min-height: 30px;
    min-width: 80px;
    max-width: 400px;
    text-align: center;
    text-transform: uppercase;    
    background-color: yellow;
    border-radius: 15px;
    border-style: none;
    padding: 5px;
    margin: 15px;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumbs {
    color: yellow;
    align-items: center;
    gap: 5px;
    padding: 10px;
    margin: 10px;
    display: flex;    
}

.breadcrumbs > a {    
    color: yellow;
    text-decoration: none;
}

p {
    color: yellow;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 2;
    min-height: 30px;
    text-align: center;
    text-transform: uppercase;    
    padding: 5px;
    margin: 5px;
}

input, select {
    color: gray;
    background-color: black;
    border-color: yellow;
    border-radius: 15px;
    border-width: 2px;
    padding: 5px;
    margin: 10px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: yellow;
    margin-left: 10px;
}

thead > tr {
    color: yellow;
    background-color: black;
    border-bottom: 2px solid yellow;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
}


td > img {
    border-color: yellow;
    border-width: 2px;
    border-radius: 15px;
    border-style: solid;
    margin: 15px;
}

td {
    text-align: center;
    text-transform: uppercase;
}

.card {
    color: white;
    border-color: yellow;
    border-width: 2px;
    border-radius: 15px;
    border-style: solid;
    gap: 5px;
    padding: 15px;
    margin: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
    margin-bottom: 10px;
}

.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

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

.grow {
    flex-grow: 1;
}

.full-page {
    width: 100vw;
    height: 100vh;
}