:root{
    --bg:#1c1917;
    --card:#292524;
    --border:#44403c;
    --yellow:#FFC107;
    --green:#22c55e;
    --blue:#3b82f6;
    --red:#ef4444;
    --text:#fafaf9;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}
body{
    background:var(--bg);
    color:var(--text);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}
.bg-glow{
    position:fixed;
    width:600px;
    height:600px;
    background:#FFC107;
    opacity:.08;
    filter:blur(180px);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
}
.container{
    width:100%;
    max-width:850px;
    position:relative;
    z-index:2;
}
.header{
    text-align:center;
    margin-bottom:40px;
}
.logo{
    width:100px;
    margin-bottom:15px;
}
h1{
    color:var(--yellow);
    margin-bottom:10px;
}
.subtitle{
    color:#a8a29e;
}
.search-wrapper{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}
.search-box{
    flex:1;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:50px;
    display:flex;
    align-items:center;
    padding:0 20px;
}
.search-box input{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    padding:18px;
}
.btn-search{
    border:none;
    background:var(--yellow);
    color:black;
    border-radius:50px;
    padding:0 30px;
    font-weight:600;
    cursor:pointer;
}
.loading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:20px;
}
.spinner{
    width:20px;
    height:20px;
    border:3px solid rgba(255,255,255,.2);
    border-top:3px solid var(--yellow);
    border-radius:50%;
    animation:spin .8s linear infinite;
}
@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
.status-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:25px;
}
.badge{
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}
.success{
    background:#14532d;
    color:#86efac;
}
.process{
    background:#172554;
    color:#93c5fd;
}
.draft{
    background:#78350f;
    color:#fcd34d;
}
.reject{
    background:#450a0a;
    color:#fca5a5;
}
.nodata{
    background:#374151;
    color:#d1d5db;
}
.status-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.item{
    margin-bottom:15px;
}
.item label{
    display:block;
    color:var(--yellow);
    margin-bottom:5px;
}
.action{
    display:flex;
    gap:10px;
    margin-top:20px;
}
.btn-primary,
.btn-secondary{
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    border:none;
    cursor:pointer;
}
.btn-primary{
    background:var(--yellow);
    color:black;
}
.btn-secondary{
    background:#44403c;
    color:white;
}
.status-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:25px;
    animation:fadeIn .3s ease;
}
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.item div{
    line-height:1.6;
    color:#e7e5e4;
}
.action a,
.action button{
    transition:.2s;
}
.action a:hover,
.action button:hover{
    transform:translateY(-2px);
}