* { border: 0px; margin: 0px;  padding: 0px; outline: none; color: #fff; text-decoration: none; -webkit-font-smoothing: antialiased;  font-size: 1rem; 	font-family: 'Kanit', sans-serif;  }
	
html,body{ width:100%; }

html {scroll-behavior: smooth;}

body { 
    background: #111;
    min-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;

}

header { 
    background: #242424;
    display: flex;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid; 
	justify-content: space-between;
	align-items: center;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
	align-items: center;
}

header nav ul li {
    margin: 0;
    padding: 0;
}

header nav ul li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: white;
    text-align: center;
}

header nav ul li a:hover {
    background-color: #575757;
}



footer {
	margin-top: auto;
    background: #242424;
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid; 
}

svg { 
    width: 20px;
	fill: #fff;
}

img.logo { width: 250px; }

.header-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: -webkit-fill-available;
}



.pg-title {
	display: flex;
    width: -webkit-fill-available;
}

.pg-title h1 {
	border-bottom: 3px dashed #737373;
	font-size: 1.5rem;
	font-weight: bold;
	display: flex;
	width: fit-content;
	padding: 0 4rem 0.5rem 0;
}

.container {
    display: flex;
    flex: 1;	
}

.sidebar { 
	width: 300px;
    background: #242424;
	height: auto;
	border-right: 1px solid;
}

.sidebar nav ul {
    list-style-type: none;
}

.sidebar nav ul li {
	border-bottom: 1px solid #3f3f3f;
    border-top: 1px solid black;
}

.sidebar nav ul li a {
	display: block;
	padding: 15px;
	color: #fff;
}

.sidebar nav ul li a:hover, .active {
    background-color: #575757;
}

.sidebar nav ul li.menu {
	border: 0;
    padding: 0.5rem;
    color: #00AABC;
}


.hidden { display: none; }


.wrapper { 
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	flex: 1;
	padding: 2rem;
}

.inputFlex {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.inputFlex input { flex: 1; }




select, input, textarea { 
	background: #363636; 
	border: 1px solid #494949;
	border-radius: 0.5rem;
	padding: 0.5rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(0.5) sepia(1) saturate(5) hue-rotate(190deg);
}

.scroll::-webkit-scrollbar {
	width: 12px; 
	height: 10px;
}

.scroll::-webkit-scrollbar-track {
	backgrounds: #f1f1f1;
	border-radius: 10px;
}

.scroll::-webkit-scrollbar-thumb {
	background: #242424;
	border-radius: 10px;
}

.scroll::-webkit-scrollbar-thumb:hover {
	background: #555;
}



.empty { 
	display: flex;
    justify-content: center;
	width: -webkit-fill-available; 
}








.form { 
    background: #242424;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border-radius: 0.5rem;
    flex-direction: column;
}

.form div {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-direction: column;
}

.form div label { 
    font-weight: bold;
    color: #00AABC;
}


.form-box { 
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.form-box label { 
	font-weight:bold;
}

dialog {
	background: #242424;
    /* position: fixed; */
    /* top: 48%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px #717171;
    margin: auto;
}


dialog::backdrop {
	background: rgb(0 0 0 / 90%);
}

dialog h3 {
	color: #6495ED;
    font-size: 1.2rem;
    font-weight: normal;
}





.tabela {
    min-width: 800px;
	width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

table { 
	border-collapse: collapse; 
	width: 100%;
}
		
tr { background: #2d2d2d; }
tr:nth-child(even) { background: #242424; }

th { 
	white-space: nowrap; 
	background: #000;
	padding: 10px; 
	text-align: center;
}

td { 
	border: 0px solid #aeaeae; 
	padding: 1rem;
}

td.r, th.r { text-align: right; }
td.c, th.c { text-align: center; }
td.l, th.l { text-align: left; }




button { 
	padding: 0.3rem 1rem;
    border-radius: 5px;
    cursor: pointer;	
}

button:hover {
	filter: brightness(85%);
}

button.blue { background: #6495ED; }
button.red { background: #F14668; }
button.green { background: #00AABC; }
button.orange { background: #d3690b; }

.acoes {
	display: flex;
    justify-content: space-evenly;
	flex-direction: row;
	gap: 2rem;
}
.acoes button { flex: 1; }