*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:
    radial-gradient(circle at top, rgba(0,255,170,0.15), transparent 40%),
    #040f0f;

    min-height:100vh;

    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    font-family:Arial;
}
.dashboard-subtitle{
    position:absolute;

    top:150px;
    left:255px;

    color:rgba(255,255,255,0.65);

    font-size:20px;
    letter-spacing:1px;

    font-weight:300;
}

/* From Uiverse.io by joe-watson-sbf */ 
.container {
  color: white;
  position: relative;
  font-family: sans-serif;
  margin-left:250px;
  margin-top:240px;

  display:flex;
  gap:20px;
}


.container .box {
  width: 250px;
  height: 220px;
  padding: 1rem;
  background-color: rgba(0, 255, 170, 0.05);
  border: 1px solid rgba(0, 255, 170, 0.35);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  box-shadow:
0 0 25px rgba(0,255,170,0.08);
  cursor: pointer;
  transition: all ease 0.3s;
}

.container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;
}
.container .box::before{
    content:"";
    position:absolute;

    width:100px;
    height:100px;

    border-radius:50%;

    background: rgba(0,255,170,0.08);

    right:-20px;
    bottom:20px;

    filter: blur(20px);
}

.container .box::after{
    content:"";

    position:absolute;

    width:2px;
    height:60px;

    background:white;

    top:20px;
    right:18px;
}

.container .box .title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.container .box div strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 58px;
  color: #7fffd4;
}

.container .box div p {
  margin: 0;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.container .box div span {
  font-size: 0.7rem;
  font-weight: 300;
}

.container .box div span:nth-child(3) {
  font-weight: 500;
  margin-right: 0.2rem;
}

.container .box div span:last-child{
  color:#00ffaa;
  font-weight:bold;
}

.container .box:hover {
transform: translateY(-6px);
box-shadow:
0 0 35px rgba(0,255,170,0.22);
border: 1px solid rgba(0,255,170,0.6);
}

.dashboard-title{
    position:absolute;

    top:50px;
    left:250px;

    font-size:72px;
    font-weight:bold;

    color:#7fffd4;

    text-shadow:
    0 0 10px rgba(0,255,170,0.7),
    0 0 30px rgba(0,255,170,0.3);

    letter-spacing:2px;
}


/* TABLE */

.reports-table{
    margin-top: 80px;

    margin-left: 120px;

    width: 570px;
}

.reports-table h2{
    color:#7fffd4;

    margin-bottom:20px;

    font-size:32px;

    text-shadow:
    0 0 10px rgba(0,255,170,0.7);
}

.reports-table table{
    width:100%;

    height: 530px;

    border-collapse:collapse;

    background: rgba(0,255,170,0.05);

    border:1px solid rgba(0,255,170,0.3);

    backdrop-filter: blur(20px);

    border-radius:14px;

    overflow:hidden;

    box-shadow:
    0 0 25px rgba(0,255,170,0.08);
}

.reports-table th{
    background: rgba(0,255,170,0.12);

    color:#7fffd4;

    padding:18px;

    text-align:left;

    font-size:18px;
}

.reports-table td{
    padding:18px;

    color:white;

    border-top:1px solid rgba(255,255,255,0.08);
}

.reports-table tr:hover{
    background: rgba(0,255,170,0.08);
}

/* STATUS COLORS */

.matched{
    color:#72f1b8 !important;
    font-weight:bold;
    text-shadow: 0 0 8px rgba(114,241,184,0.35);
}

.review{
    color:#ffd98a !important;
    font-weight:bold;
    text-shadow: 0 0 8px rgba(255,217,138,0.25);
}

.scam{
    color:#ff8f8f !important;
    font-weight:bold;
    text-shadow: 0 0 8px rgba(255,143,143,0.25);
}

.sidebar{
    position:fixed;

    left:0;
    top:0;

    width:220px;
    height:100vh;

    background: rgba(0,255,170,0.04);

    border-right:1px solid rgba(0,255,170,0.15);

    backdrop-filter: blur(20px);

    padding:40px 25px;

    display:flex;
    flex-direction:column;

    gap:18px;
}

.logo{
    color:#7fffd4;

    font-size:32px;

    margin-bottom:30px;

    text-shadow:
    0 0 12px rgba(0,255,170,0.5);
}

.sidebar a{
    color:white;

    text-decoration:none;

    font-size:18px;

    padding:14px 18px;

    border-radius:12px;

    transition:0.3s;
}

.sidebar a:hover{
    background: rgba(0,255,170,0.12);

    color:#7fffd4;

    box-shadow:
    0 0 15px rgba(0,255,170,0.15);
}