diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..45d818d --- /dev/null +++ b/styles.css @@ -0,0 +1,46 @@ +/* styles.css */ + +/* Existing styles remain unchanged */ + +#login-form, #report-form { + max-width: 600px; + margin: 0 auto; + } + + #login-form label, #report-form label { + display: block; + margin: 10px 0 5px; + } + + #login-form input, #report-form input, #report-form textarea { + width: 100%; + padding: 10px; + border: 1px solid #ddd; + border-radius: 4px; + } + + #login-form button, #report-form button { + background: #00796b; + color: #fff; + padding: 10px 15px; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: 16px; + } + + #login-form button:hover, #report-form button:hover { + background: #004d40; + } + + /* Additional styles for the logout link */ + #nav-logout { + color: #00796b; + text-decoration: none; + font-weight: bold; + } + + #nav-logout:hover { + text-decoration: underline; + } +