body {
    font-family: Arial, sans-serif;
    margin: 0; padding: 0;
    background: #f9f9f9;
    color: #333;
}
.navbar {
    background: #004080;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}
.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.navbar a:hover { text-decoration: underline; }
.container {
    width: 90%; max-width: 1000px;
    margin: 20px auto;
}
.form-container {
    background: white;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
input, textarea, button {
    width: 100%;
    margin: 10px 0; padding: 10px;
    border: 1px solid #ccc; border-radius: 5px;
}
button {
    background: #004080; color: white; border: none;
    cursor: pointer;
}
button:hover { background: #0066cc; }
@media(max-width: 600px){
    .navbar { flex-direction: column; text-align: center; }
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
.table th { background: #f0f0f0; }

.btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 10px 0;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover { background: #004080; }
textarea {
    min-height: 80px;
}

.table td form {
    display: block;
    margin-bottom: 10px;
}

.table td textarea {
    width: 100%;
    margin: 5px 0;
}
.footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left a, .nav-right a {
    margin-right: 15px;
    color: white;
}

.nav-left a:hover, .nav-right a:hover {
    text-decoration: underline;
}
body { font-family: Arial; margin:0; padding:0; background:#f9f9f9; color:#333; }
.navbar { background:#004080; color:white; display:flex; justify-content:space-between; padding:15px; }
.nav-left, .nav-right { display:flex; align-items:center; }
.nav-left a, .nav-right a { color:white; margin-right:15px; text-decoration:none; }
.nav-left a:hover, .nav-right a:hover { text-decoration:underline; }

.container { width:90%; max-width:1000px; margin:20px auto; }
.form-container { background:white; padding:20px; max-width:500px; margin:20px auto; border-radius:10px; box-shadow:0 2px 6px rgba(0,0,0,0.2); }
input, textarea, button { width:100%; margin:10px 0; padding:10px; border:1px solid #ccc; border-radius:5px; }
button { background:#004080; color:white; border:none; cursor:pointer; }
button:hover { background:#0066cc; }
textarea { min-height:80px; }

.table { width:100%; border-collapse: collapse; margin-top:15px; }
.table th, .table td { padding:10px; border:1px solid #ddd; text-align:left; }
.table th { background:#f0f0f0; }

.table td form { display:block; margin-bottom:10px; }
.table td textarea { width:100%; margin:5px 0; }

.btn { display:inline-block; padding:8px 12px; background:#0066cc; color:white; text-decoration:none; border-radius:5px; }
.btn:hover { background:#004080; }

.footer { background:#004080; color:white; text-align:center; padding:15px; margin-top:40px; }

@media(max-width:600px){ .navbar { flex-direction:column; text-align:center; } }
.success { color: green; font-weight: bold; margin: 10px 0; }
.error { color: red; font-weight: bold; margin: 10px 0; }
