@font-face {
    font-family: Montserrat-Regular;
    src: url("fonts/Montserrat-Regular.ttf");
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url("fonts/Montserrat-SemiBold.ttf");
}

html {
    height: 100%;
    font-family: Montserrat-Regular, sans-serif;
}

body {
    height: inherit;
    margin: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.program_name {
    display: flex;
    font-family: Montserrat-SemiBold;
}

.program_functions_buttons {
    display: flex;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;


    margin: 10px;
    padding: 10px;

    width: 180px;

    border-color: black;
    border-width: 2px;
    border-style: solid;
    border-radius: 25px;
}

.buttons img {
    display: block;
    padding: 0.5em;
    width: 160px;
}

.buttons p {
    font-family: Montserrat-Regular;
    text-align: center;

    padding: 0.5em;
    margin: 0;
}

.table-head {
    background-color: wheat;
}

.table-row {
    height: 25px;
}

.table-column {
    border-style: none;
    width: 120px;
    text-align: center;
    font-family: Montserrat-Regular, sans-serif;
    border-style: solid;
    border-radius: 5px;
    border-color: black;
    border-width: 1px;
}

.table-empty {
    background-color: white;
    border-style: none;
}

.spacer {
    width: auto;
    height: 25px;
}

.navigation-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.left-sided-bar-elements {
    display: flex;
    flex-direction: row;
}

.right-sided-bar-elements {
    display: flex;
    flex-direction: row;
}

.navigation-button {
    font-family: Montserrat-Regular, sans-serif;
    margin: 10px;
    padding: 10px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 20px;
}

.danger a {
    color: white;
}

.danger {
    background-color: #f03c34;
}

.export-to-excel a {
    color: white;
}

.export-to-excel {
    background-color: #17854c;
}

.navigation-selected a {
    color: white;
}

.navigation-selected {
    background-color: black;
}

