
body{
    margin:0;
    font-family:Arial;
    background:#0f172a;
    color:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.card{
    background:#1e293b;
    border-radius:15px;
    padding:20px;
    margin-top:20px;
}

input,button{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:10px;
}

button{
    background:#3b82f6;
    color:white;
    cursor:pointer;
}

button:hover{
    background:#2563eb;
}

.navbar{
    background:#111827;
    padding:15px;
    display:flex;
    justify-content:space-between;
}

.logout{
    background:red;
    padding:10px 15px;
    border-radius:10px;
    text-decoration:none;
    color:white;
}

.table{
    width:100%;
    border-collapse:collapse;
}

.table th,.table td{
    border:1px solid #334155;
    padding:10px;
}

.status{
    padding:8px;
    border-radius:8px;
    display:inline-block;
}

.pending{
    background:orange;
}

.success{
    background:green;
}
