* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #222;
}
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.login-box, .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 24px;
}
.login-box {
    width: 100%;
    max-width: 420px;
}
.container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 16px;
}
.topbar {
    background: #0f172a;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar span { margin-left: 10px; color: #cbd5e1; }
label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
}
input[type="text"], input[type="password"], input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}
button, .btn {
    display: inline-block;
    padding: 12px 18px;
    background: #2563eb;
    color: #fff;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    margin-top: 14px;
}
.btn.secondary { background: #475569; }
.table-wrap { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}
th, td {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
    vertical-align: top;}
    
    .status.processing { background: #fef3c7; color: #92400e; }
