*{
    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;

    font-family:Arial;

    padding:60px 70px;
}

/* TITLE */

.notifications-title{
    font-size:72px;
    font-weight:bold;
    margin-left: 190px;

    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;
}

.notifications-subtitle{
    margin-top:20px;
    margin-left: 190px;

    color:rgba(255,255,255,0.65);

    font-size:20px;

    letter-spacing:1px;
}

/* TABLE */

.notifications-table{
    margin-top:60px;
    margin-left: 190px;

    width:100%;
    max-width:1200px;
}

.notifications-table h2{
    color:#7fffd4;

    margin-bottom:20px;

    font-size:24px;

    text-shadow:
    0 0 10px rgba(0,255,170,0.7);
}

.notifications-table table{
    width:100%;

    border-collapse:collapse;

    background: rgba(0,255,170,0.05);

    border:1px solid rgba(0,255,170,0.25);

    backdrop-filter: blur(20px);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 0 25px rgba(0,255,170,0.08);
}

.notifications-table th{
    background: rgba(0,255,170,0.12);

    color:#7fffd4;

    padding:18px;

    text-align:left;

    font-size:18px;
}

.notifications-table td{
    padding:18px;

    color:white;

    border-top:1px solid rgba(255,255,255,0.08);

    font-size:16px;
}

.notifications-table tr:hover{
    background: rgba(0,255,170,0.06);
}

/* STATUS */

.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);
}

/* NOTIFICATION STATUS */

.sent{
    color:#72f1b8 !important;
    font-weight:bold;
    text-shadow: 0 0 8px rgba(114,241,184,0.35);
}

.pending{
    color:#ffd98a !important;
    font-weight:bold;
    text-shadow: 0 0 8px rgba(255,217,138,0.25);
}

.failed{
    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);
}