* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    height: 100%;
}


/* Tables */

.tbl-cont,
.tbl-frm {
   margin: 30px auto;
    width: 95%;
    /* overflow-x: scroll; */
}

table {
    border-collapse: collapse;
    border: 1px solid #333333;
    margin-bottom: 60px;
}

table td {
    border-collapse: collapse;
    border: 1px solid #333333;
    padding: 5px;
}

.tbl-nobrdr {
    border: none;
}

.tbl-nobrdr td {
    border: none;
}

.hdr-sticky {
    position: sticky;
    top: 30px;
    background-color: #fff;
}


/* Input */

label {
    padding: 10px;
    margin: 10px 15px;
    font-size: 1.3rem;
}

fieldset {
    padding: 1.5em;
    margin: 1.5em;
}

input[type=text],
input[type=password],
input[type=radio],
input[type=checkbox],
input[type=file],
input[type=email],
input[type=date],
input[type=number],
input[list=workers],
input[type=time],
input[type=search],
select {
    padding: 10px;
    margin: 10px 15px;
    font-size: 1.2rem;
    border-radius: 10px;
}


/* Utilities */

.centered {
    text-align: center;
}

.lefted {
    text-align: left;
}

.righted {
    text-align: right;
}

.caps {
    text-transform: capitalize;
}

.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.hide {
    display: none;
}

.title {
    font-weight: bold;
    font-size: 1.4rem;
}

.title2 {
    font-weight: bold;
    font-size: 0.9em;
}

.rounded {
    border-radius: 10px;
}


/* Controls */

button,
input[type=submit],
.button,
input[type=button] {
    color: white;
    background-color: green;
    padding: 10px;
    min-width: 50px;
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    text-decoration: none;
}

button:hover,
input[type=submit]:hover,
input[type=submit]:focus,
button:focus,
.button:hover {
    background-color: rgba(138, 8, 8, 0.4);
    font-size: 1.3rem;
    box-shadow: 10px 5px #080808;
    color: #000;
    cursor: pointer;
}

button:disabled,
button[disabled],
input[type=submit]:disabled {
    background-color: rgba(43, 36, 36, 0.4);
    font-size: 1.3rem;
    box-shadow: 10px 5px #080808;
    color: #000;
    cursor: pointer;
}


/* Footer */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #333333;
}

#footer-items {
    margin-top: 10px;
    margin-left: 50px;
    display: flex;
    color: #fff;
    gap: 60px;
}


/* Help */

.hlp-cont {
    width: 90%;
    margin: auto;
    text-align: center;
}

.hlp-cont h2 {
    margin-top: 4.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.hlp-cont ul {
    text-align: left;
    margin-left: 2rem;
}

.hlp-cont li {
    line-height: 1.6;
    list-style: none;
}

.hlp-cont ul ul {
    text-align: left;
    margin-left: 4rem;
}

.hlp-cont p {
    width: 100%;
    text-align: left;
    line-height: 1.6;
    margin-top: 25px;
    margin-bottom: 30px;
}

.hlp-cont div {
    text-align: left;
    margin-top: 3rem;
}

.hlp-cont a {
    color: blue;
    text-decoration: none;
    font-size: 1.4rem;
}

.hlp-cont span {
    text-align: left;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
}

.pending {
    color: red;
}

.hlp-cont .title {
    font-size: 1.3rem;
}