@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f4f6f9;
}

/* ================= HEADER ================= */
.header{
    background:linear-gradient(90deg,#0b1d3a,#102a56);
    color:#fff;
    padding:25px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header h1{
    font-size:30px;
    font-weight:700;
}

.header span{
    font-size:16px;
    opacity:0.9;
}

/* ================= LAYOUT ================= */
.wrapper{
    display:flex;
    min-height:calc(100vh - 70px);
}

/* ================= SIDEBAR ================= */
.sidebar{
    width:240px;
    background:#0b1d3a;
    padding:20px;
}

.sidebar h3{
    color:#fff;
    text-align:center;
    margin-bottom:25px;
    font-size:16px;
    font-weight:600;
}

.sidebar a{
    display:block;
    padding:12px 15px;
    color:#e5e7eb;
    text-decoration:none;
    border-radius:6px;
    margin-bottom:8px;
    font-size:14px;
}

.sidebar a:hover{
    background:#1e88e5;
    color:#fff;
}

/* ================= CONTENT ================= */
.content{
    flex:1;
    padding:30px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* ================= STATUS TAG ================= */
.status{
    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    color:#fff;
}

.Submitted{background:#f59e0b;}
.In\ Review{background:#3b82f6;}
.Resolved{background:#22c55e;}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .wrapper{
        flex-direction:column;
    }
    .sidebar{
        width:100%;
    }
}