/* Basic styling for SCP RP application */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #1e1e2f;
    color: #fff;
    padding: 1rem;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

footer {
    background: #1e1e2f;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

form {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
select,
textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button, .button {
    padding: 0.5rem 1rem;
    background: #1e1e2f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

button:hover, .button:hover {
    background: #343457;
}

.errors {
    color: #c00;
    list-style: none;
    padding-left: 0;
}

.flash-message {
    background: #dff0d8;
    color: #3c763d;
    padding: 0.5rem;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.report-list {
    list-style: none;
    padding-left: 0;
}

.report-list li {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.report-list .date {
    font-size: 0.8rem;
    color: #666;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.data-table th, .data-table td {
    padding: 0.5rem;
    border: 1px solid #ccc;
    text-align: left;
}

.objectives {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.objectives li {
    font-size: 0.9rem;
}