*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    background:#eef3ff;
    color:#1e293b;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

header{

    text-align:center;
    margin-bottom:40px;
}

.logo{

    width:120px;
    margin-bottom:20px;
}

header h1{

    font-size:40px;
    color:#0f172a;
}

header p{

    color:#64748b;
    margin-top:10px;
}

.grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

.card{

    background:white;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h2{

    margin-bottom:20px;
    color:#2563eb;
}

.card p{

    margin-top:18px;
    font-weight:600;
}

.card span{

    display:block;
    margin-top:5px;
    color:#555;
}

.links{

    display:flex;
    gap:20px;
    margin-top:25px;
}

.links a{

    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

table{

    width:100%;
    border-collapse:collapse;
}

td{

    padding:12px 0;
    border-bottom:1px solid #eee;
}

.status-card{

    margin-top:35px;
    background:white;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.status{

    display:flex;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.dot{

    width:18px;
    height:18px;
    background:#22c55e;
    border-radius:50%;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{

        transform:scale(.9);
        opacity:.7;
    }

    50%{

        transform:scale(1.2);
        opacity:1;
    }

    100%{

        transform:scale(.9);
        opacity:.7;
    }

}

.footer{

    margin-top:40px;
    text-align:center;
    color:#64748b;
}

.footer p{

    margin:8px 0;
}

@media(max-width:768px){

.grid{

    grid-template-columns:1fr;
}

header h1{

    font-size:30px;
}

}