body {
    font-family: Arial;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.login-box h2 {
    color: white;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #22c55e;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.error {
    color: red;
}

.container {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    color: white;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #334155;
}

a {
    color: red;
}

input[type="file"]{
    background:#334155;
    color:white;
    padding:10px;
    border-radius:8px;
}

select, input[type="date"]{
    padding:6px;
    border-radius:6px;
    border:none;
}

.stats{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.stats div{
    background:#1e293b;
    padding:10px 15px;
    border-radius:8px;
}

select{
    padding:10px;
    border-radius:8px;
    border:none;
    background:#1e293b;
    color:white;
}