body {
    background: #EDF0F8;
    font-family: Poppins, Helvetica, "sans-serif";
    margin: 0;
    padding: 0;
    min-width: 1024px;
}

.nav-bar {
    position: sticky;
    top: 0;
    /*width: 100%;*/
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    padding: 12px 24px;
    gap: 16px;
    font-size: 12px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-bar-button {
    padding: 8px 12px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #3F4254;
}
.nav-bar-button:hover {
    background: #F5F5F9;
    color: #3599FE;
}

.main-content {
    padding: 16px 24px;
}
.content {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    padding: 24px;
}
.page-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #cccccc;
}
.filter-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-item {
    /*flex: 1;*/
}
.filter-label {
    font-weight: 400;
    font-size: 12px;
    color: #565656;
}
.filter-input {
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    padding: 8px 12px;
    min-width: 150px;
}
.input-label {
    font-weight: 400;
    font-size: 12px;
    color: #565656;
}
.input {
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    padding: 8px 12px;
    min-width: 150px;
    font-size: 14px;
    font-weight: 400;
}
.text-area {
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    padding: 8px 12px;
    min-width: 150px;
    min-height: 40px;
    font-size: 14px;
    font-weight: 400;
}
.filter-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.submit-button {
    width: 150px;
    height: 40px;
    background: #3599FE;
    border-radius: 8px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}
.submit-button:hover {
    background: #007fff;
}
.reset-button {
    width: 150px;
    height: 40px;
    background: #565656;
    border-radius: 8px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}
.reset-button:hover {
    background: #353535;
}
.nav-bar-sub-items {
    display: none;
    position: absolute;
    top: 45px;
    background: #ffffff;
    padding: 0;
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
}
.nav-bar-sub-items > div {
    font-size: 12px;
    list-style-type: none;
    padding: 12px 12px;
    cursor: pointer;
    color: #3F4254;
}
.nav-bar-sub-items > div:hover {
    background: #F5F5F9;
    color: #3599FE;

}

table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table > tbody > tr > th {
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #ffffff;
    padding: 8px;
    background: #cccccc;
}

table > tbody > tr > td {
    font-weight: 400;
    font-size: 12px;
    border: 1px solid #cccccc;
    padding: 8px;
}

.page-link {
    font-size: 12px;
    color: #ffffff;
    background: #000000;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration-line: none;
}
.page-link:hover {
    background: #3D3D3D;
}
