* {
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: "Open Sans", sans-serif;
    color: #102474;
}

.container_b {
    width: 360px;
    margin: auto;
    background-color: white;
    border-radius: 3px;
    margin-bottom: 30px;
}

.login-box {
    width: 360px;
    margin: auto;
    border-radius: 3px;
    background-color: white;
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    padding-top: 15px;
    font-weight: bolder;
}

h3 {
    padding-top: 15px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

h4 {
    text-align: center;
}

form {
    border-radius: 20px;
    background-color: #dfe6ff;
    padding: 2em;
}

form label {
    display: flex;
    margin-top: 20px;
    font-size: 18px;
}

#update_status_container {
    background-color: #e8e8e8;
    padding: 20px;
}

#update_status_form {
    padding-top: 15px;
}

input,
textarea,
select {
    width: 100%;
    padding: 7px;
    border: none;
    border: 1px solid gray;
    border-radius: 6px;
    outline: none;
    background-color: white;
}

input[type="button"], input[type="submit"] {
    width: 100%;
    height: 35px;
    margin-top: 20px;
    border: none;
    background-color: #d8448c;
    color: white;
    font-size: 18px;
    transition-duration: 500ms;
    transition-property: background-color;
    cursor: pointer;
}

input[type="button"]:hover, input[type="submit"]:hover {
    background-color: #d986af;
}

p {
    text-align: center;
    padding-top: 20px;
    font-size: 15px;
}

.container {
    margin: 150px auto;
    margin-top: 0px;
    max-width: 960px;
}

a {

    text-decoration: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

table,
th,
td {
    border: 1px solid #bbb;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th {
    background-color: #ddd;
}

th,
td {
    padding: 5px;
}

button {
    cursor: pointer;
}

/*Initial style sort*/
.tickets_table th.sorterHeader {
    cursor: pointer;
}

.tickets_table th.sorterHeader:after {
    content: " \f0dc";
    font-family: "FontAwesome";
}

/*Style sort desc*/
.tickets_table th.sortingDesc:after {
    content: " \f0dd";
    font-family: "FontAwesome";
}

/*Style sort asc*/
.tickets_table th.sortingAsc:after {
    content: " \f0de";
    font-family: "FontAwesome";
}

/*Style disabled*/
.tickets_table th.disableSort {}

#for_numrows {
    padding: 10px;
    float: left;
}

#for_filter_by {
    padding: 10px;
    float: right;
}

#pagesControllers {
    display: block;
    text-align: center;
}

form > input {
    margin-top: 6px;
}

.formlabel {
    font-weight: 600;
}

#signout {
    padding: 0.5em 1em;
    color: white;
    margin: 0 auto;
    display: block;
    background-color: orangered;
    width: 346px;
    border-radius: 10px;
    transition-duration: 500ms;
    transition-property: background-color;
}

#signout:hover {
    background-color: orange;
}

.mainNav {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mainNav a {
    text-transform: uppercase;
    font-weight: 800;
    padding: 6px 12px;
    color: white;
    background-color: #102474;
    border-radius: 5px;
    transition-duration: 500ms;
    transition-property: background-color;
}

.mainNav a:hover {
    background-color: #5166be;
    cursor: pointer;
}

.hint {
    margin-top: 0;
    text-align: center;
    font-size: 14px;
    font-style: italic;
}

#runButton {
    width: 100%;
    background-color: #102474;
    transition-duration: 500ms;
    transition-property: background-color;
}

#runButton:hover {
    background-color: #5166be;
    cursor: pointer;
}