@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

* {
    margin: 0;
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

:root {
    --bg-color: #dadada;
    --primary-color: #d03a37;
}

body {
    background: linear-gradient(341deg, rgba(60, 62, 74, 0.10) 0%, rgba(76, 78, 109, 0.10) 100%);
}

.headline h1, .headline p {
    display: inline;
    vertical-align: top;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
}

.headline h1 {
    font-weight: bold;
}

main {
    height: auto;
    right: 0;
    display: flex;
    flex-flow: column;
    height: 100%;
    position: static;
    width: calc(100% - 240px);
    margin-left: 160px;
}

main .main-content {
    width: 100%;
    margin: 0;
    padding: 40px;
   
}

.back-button-div {
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5em;
    margin-bottom: 1em;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

h2.page-title {
    font-size: 18px;
    text-transform: uppercase;
    opacity: 0.7;
}

h3 {
    color: black !important;
    font-size: 18px;
    opacity: 0.7;
}

th:last-child {
    width: 50px !important;
}

.generic-button {
    font-weight: bold;
    background-color: #008000;
    border-radius: 8px;
    color: #fff;
    padding: 0.5em;
}

.generic-button:hover {
    background-color: #186118;
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
.delete-button {
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 0.5em;
    border-radius: 8px;
}

.delete-button:hover {
    background-color: #ff4800;
    cursor: pointer;
}

.edit-button {
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    background-color: #006eff;
    color: white;
    border: none;
    padding: 0.5em;
    border-radius: 8px;
}

.edit-button:hover {
    background-color: #368dff;
    cursor: pointer;
}

.details-button {
    color: white;
    border: none;
    padding: 0.5em;
    border-radius: 8px;
}

.details-button:hover {
    background-color: #24caa6;
    cursor: pointer;
}

.td-options {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.show {
    display: flex;
}

.hidden {
    display: none;
}

.pdf-button {
    background-color: #ff4800;
    border-radius: 8px;
    padding: 0.5em;
}
.pdf-button:hover {
    cursor: pointer;
}