html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Red Hat Display', sans-serif;
	font-weight: 300;
}

body {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14329481792717091) 36%, rgba(211, 208, 45, 0.3029586834733894) 100%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	background-color: #fff;
}

header .left-header {
	display: flex;
	align-items: center;
}

header img {
	height: 90px;
	margin-right: 10px;
}

header a {
	color: #324904;
	text-decoration: none;
	text-decoration-skip-ink: none;
}

header a:hover {
	text-decoration: underline;
	color: #597a12;
}

.header-avocado {
	color: #324904;
	font-size: 30px;
	font-weight: 600;
}

header .right-header {
	display: flex;
	align-items: center;
}

.right-header a {
	color: #324904;
	margin-left: 20px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 200;
}

.right-header a img {
	height: 25px;
	margin-left: 10px;
}

.subheader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	background: transparent;
	margin-top: 20px;
}

.sub-logo-title {
	display: flex;
	align-items: center;
}

.sub-logo-title img {
	height: 30px;
	margin-right: 15px;
}

.sub-avocado {
	color: #324904;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
}

footer {
	background-color: #f0efb3;
	padding: 20px;
	text-align: left;
	margin-top: auto;
}

footer a {
	color: #324904;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #597a12;
}

footer .footer-header {
	color: #324904;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
}

footer .footer-text {
	color: #324904;
	margin: 5px 0;
	font-size: 16px;
}

footer .footer-copyright {
	color: #324904;
	margin: 5px 0;
	font-size: 20px;
	text-align: center;
}

a {
	text-decoration: none;
}


.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #fff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-title {
	display: flex;
	align-items: center;
}

.logo-title img {
	height: 50px;
	margin-right: 10px;
}

.logo-title h1 {
	font-size: 30px;
	color: #324904;
	margin: 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media print {
 .table, .table__body {
  overflow: visible;
  height: auto !important;
  width: auto !important;
 }
}

/*@page {
    size: landscape;
    margin: 0; 
}*/

.maintable {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.table {
    width: 82vw;
    height: 90vh;
    background-color: #fff5;

    backdrop-filter: blur(7px);
    box-shadow: 0 .4rem .8rem #0005;
    border-radius: .8rem;

    overflow: hidden;
}

.table__header {
    width: 100%;
    height: 10%;
    background-color: #fff4;
    padding: .8rem 1rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table__header .input-group {
    width: 35%;
    height: 100%;
    background-color: #fff5;
    padding: 0 .8rem;
    border-radius: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .2s;
}

.table__header .input-group:hover {
    width: 45%;
    background-color: #fff8;
    box-shadow: 0 .1rem .4rem #0002;
}

.table__header .input-group img {
    width: 1.2rem;
    height: 1.2rem;
}

.table__header .input-group input {
    width: 100%;
    padding: 0 .5rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;
}

.table__body {
    width: 95%;
    max-height: calc(89% - 1.6rem);
    background-color: #fffb;

    margin: .8rem auto;
    border-radius: .6rem;

    overflow: auto;
    overflow: overlay;
}


.table__body::-webkit-scrollbar{
    width: 0.5rem;
    height: 0.5rem;
}

.table__body::-webkit-scrollbar-thumb{
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}

.table__body:hover::-webkit-scrollbar-thumb{ 
    visibility: visible;
}


table {
    width: 100%;
}

td img {
    width: 36px;
    height: 36px;
    margin-right: .5rem;
    border-radius: 50%;

    vertical-align: middle;
}

table, th, td {
    border-collapse: collapse;
    padding: 1rem;
    text-align: left;
}

thead th {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #d5d1defe;
    cursor: pointer;
    text-transform: capitalize;
}

tbody tr:nth-child(even) {
    background-color: #0000000b;
}

tbody tr {
    --delay: .1s;
    transition: .5s ease-in-out var(--delay), background-color 0s;
}

tbody tr.hide {
    opacity: 0;
    transform: translateX(100%);
}


tbody tr td,
tbody tr td p,
tbody tr td img {
    transition: .2s ease-in-out;
}

tbody tr.hide td,
tbody tr.hide td p {
    padding: 0;
    font: 0 / 0 sans-serif;
    transition: .2s ease-in-out .5s;
}

tbody tr.hide td img {
    width: 0;
    height: 0;
    transition: .2s ease-in-out .5s;
}

.os {
    padding: .4rem 0;
    border-radius: 2rem;
    text-align: center;
	color: #ffff;
}

.os.Fedora {
    background-color: #60a5fa;
}

.os.CentOS {
    background-color: #a04e8b;
}



@media (max-width: 1000px) {
    td:not(:first-of-type) {
        min-width: 12.1rem;
    }
}

thead th span.icon-arrow {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 1.4px solid transparent;
    
    text-align: center;
    font-size: 1rem;
    
    margin-left: .5rem;
    transition: .2s ease-in-out;
}

thead th:hover span.icon-arrow{
    border: 1.4px solid #6c00bd;
}

thead th:hover {
    color: #6c00bd;
}

thead th.active span.icon-arrow{
    background-color: #6c00bd;
    color: #fff;
}

thead th.asc span.icon-arrow{
    transform: rotate(180deg);
}

thead th.active,tbody td.active {
    color: #6c00bd;
}
