* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto Regular';
    src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'Roboto Medium';
    src: url(../fonts/Roboto-Medium.ttf);
}
@font-face {
    font-family: 'Roboto Bold';
    src: url(../fonts/Roboto-Bold.ttf);
}

@media only screen and (max-width: 480px) {
    table {
        font-size: 12px;
    }
    
    .mhide {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto Regular';
    font-size: 14px;
    line-height: inherit;
}

input, select, textarea {
    padding: 6px 0.25rem;
    font-family: inherit;
    font-size: inherit;
}

input {
    line-height: normal;
}

p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

h2, h3 {
    display: block;
    font-size: 1.5em;
    /* margin-block-start: 0.83em;
    margin-block-end: 0.83em; */
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

textarea {
    font-family: 'Roboto Regular';
    resize: none;
}

button {
    padding: 6px 1rem;
    background-color: #e2362c;
    color: white;
    border-color: #e2362c;
    border-style: solid;
    cursor: pointer;
    border-radius: 2px;
}

button:disabled, 
.content .btn:disabled {
    background-color: gray;
    color: black;
    border-color: gray;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

input[type="datetime-local" i] {
    font-family: 'Roboto Regular';
    font-size: 14px;
    padding: 4px 4px;
}

input:read-only {
    background-color: #f5f5f5;
    outline: none;
}

i {
    font-size: 20px;
}

table thead {
    background-color: #e2362c;
    color: white;
}

table th {
    font-family: 'Roboto Medium';
    font-weight: 500 !important;
}

.flex-row {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
}

.base {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    column-gap: 0;
    align-items: flex-start;
    /* background-color: salmon; */
}

.dataTables_wrapper table.dataTable {
    padding: 8px 0;
}


.content .btn {
    padding: 3px 1rem;
    border: solid 1px #e2362c;
    border-radius: 2px;
    background-color: #e2362c;
    color: white;
    font-size: inherit;
}

