html,
* {
    padding: 0px;
    margin: 0px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

table {
    width: 100%;
}

tr,
th,
td {
    width: auto;
    text-align: center;
}

header {
    min-width: 100%;
    min-height: 30px;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid lightgrey;
}

header > .menu-item {
    text-decoration: none;
    padding: 10px;
    height: "100%";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header > .menu-item-active {
    height: 100%;
    background-color: orangered;
    text-decoration: none;
    color: white;
}

.page {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page .fixed {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    flex-direction: column;
    border: 1px solid lightgrey;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 3%;
    height: 10px;
    min-height: 150px;
    border-radius: 5px;
}

.inherit-cursor {
    cursor: pointer;
}

.inherit-cursor > * {
    cursor: pointer;
}

