body {
    font-family: sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}
h1 {
    text-align: center;
    color: #007bff;
    font-size: 2em;
}
.login-section, .admin-section {
    text-align: center;
    margin-top: 20px;
}
input[type="password"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    max-width: 250px;
    box-sizing: border-box;
}
button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
button:hover {
    background-color: #0056b3;
}
.report-card {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}
.report-card.verified { border-left: 5px solid green; background-color: #e6ffe6; }
.report-card.pending { border-left: 5px solid orange; }
.report-card h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.4em;
}
.report-card button {
    margin-top: 10px;
    width: auto;
    padding: 8px 12px;
    font-size: 0.9em;
}
.no-reports {
    text-align: center;
    color: #777;
    font-style: italic;
}
.nav-links {
    text-align: center;
    margin-top: 20px;
}
.nav-links a {
    display: inline-block;
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #007bff;
    border-radius: 4px;
}
.nav-links a:hover {
    background-color: #007bff;
    color: white;
}
@media (max-width: 600px) {
    body {
        margin: 10px;
        padding: 15px;
    }
    h1 {
        font-size: 1.6em;
    }
    input[type="password"] {
        width: calc(100% - 20px);
        margin-right: 0;
        margin-bottom: 10px;
    }
    .login-section button {
        width: 100%;
    }
    .report-card h2 {
        font-size: 1.2em;
    }
    .nav-links a {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}