body { font-family: Arial, sans-serif; background: #f4f6f8; margin: 0; color: #1f2937; }
.container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.card { background: white; border-radius: 14px; padding: 24px; margin-bottom: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.login-card { max-width: 420px; margin: 80px auto; }
.topbar { display: flex; justify-content: space-between; align-items: center; }
h1 { margin: 0 0 8px; }
p { color: #6b7280; }
label { display: block; margin-top: 14px; font-weight: bold; }

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-sizing: border-box;
}

button {
    border: 0;
    background: #2563eb;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

button:hover { background: #1d4ed8; }

.retry-btn {
    background: #f59e0b;
    padding: 8px 12px;
    font-size: 0.9em;
}

.retry-btn:hover { background: #d97706; }

.upload-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px; border-bottom: 1px solid #e5e7eb; text-align: left; }
th { background: #f9fafb; }

a {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
}

.logout {
    background: #111827;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
}

.alert {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.alert.error { background: #fee2e2; color: #991b1b; }
.alert.success { background: #dcfce7; color: #166534; }

.status {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e5e7eb;
    display: inline-block;
}

.status.finalizat {
    background: #dcfce7;
    color: #166534;
}

.status.eroare {
    background: #fee2e2;
    color: #991b1b;
}

.status.in-procesare {
    background: #fef3c7;
    color: #92400e;
}

.status.incarcat {
    background: #dbeafe;
    color: #1e40af;
}