* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    min-height: 100vh;
    background-color: rgb(30, 30, 37);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    background-color: #222;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

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

.navbar-logo img {
    width: auto;
    height: 35px;
    margin-right: 50px;
}

.navbar-menu {
    list-style: none;
    display: flex;
}

.navbar-menu li {
    margin-right: 20px;
}

.navbar-menu li a {
    text-decoration: none;
    color: rgb(200, 200, 200);
    font-size: 20px;
    transition: color 0.3s;
}

.navbar-menu li a[href="reviewers.html"] {
    color: rgb(200, 200, 200);
  font-weight: 500;
}

.navbar-menu li a[href="index.html"] {
    color: rgb(200, 200, 200);
  font-weight: 500;
}

.navbar-menu li a:hover {
    color: rgba(161, 44, 245, 0.6);
}

.instagram-text {
    color: rgb(200, 200, 200);
}

.description-reviewers {
    text-align: center;
    color: rgb(215, 215, 215);
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
  }

main.table {
    margin-top: 75px;
    width: 40vw;
    height: 90vh;
    background-color: transparent;

    box-shadow: 0;
    border-radius: .8rem;

    overflow: hidden;
}


.status.delivered {
    margin-left: 15%;
    margin-right: 50%;
    background-color: rgba(161, 44, 245, 0.8);
    color: rgb(200, 200, 200);
    font-size: 14px;
    text-align: center;
}



.table__header {
    color: rgb(200, 200, 200);
    width: 100%;
    height: 10%;
    margin-left: 0px;
    background-color: transparent;
    padding: .8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table__header-title {
    font-size: 16px;
}

.table__header .input-group {
    width: 35%;
    height: 65%;
    background-color: transparent;
    padding: 0.7rem;
    border-radius: 2rem;

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

    transition: .2s;

    border: 2px solid rgba(161, 44, 245, 1);
}

.table__header .input-group:hover {
    width: 45%;
    background-color: rgba(46, 46, 46, 0.533);
    box-shadow: 0 .1rem .4rem #0002;
}

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

.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: rgb(32, 32, 37);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

    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: 40vw;
}

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: rgb(16, 22, 27);
    box-shadow: .1rem .4rem #0002;
    cursor: pointer;
    text-transform: capitalize;
}

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

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

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

tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

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;
}

.status {
    padding: .4rem 0;
    border-radius: 2rem;
    text-align: center;
}


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

@media (min-width: 768px) {
    table,
    td {
      width: 38vw;
    }
  }

  @media (max-width: 767px) {
  table,
  main.table {
    width: 95vw;
  }
}
  

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.active span.icon-arrow{
    color: #000;
}

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

a {
    text-decoration: none;
    color: inherit;
}


.image-container {
    display: flex;
    align-items: center;
  }
  
  .text-wrapper {
    text-align: left;
    margin-left: 50px;
    margin-top: -35px;
  }
  
  .image-caption,
  .sub-caption {
    margin: 0;
    color: rgb(200, 200, 200);
  }
  

  .sub-caption {
    font-size: 12px;
    color: gray;
  }
  
  
  
  
  