/* assets/style.css - general site styles (deep green + gold) */
:root {
    --deep-green: #0b3d2e;
    --gold: #ffd24d;
    --bg: #f6fbf6;
    --muted: #6b6b6b;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: #102018;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--deep-green);
    color: #fff;
    align-items: center;
}

.brand {
    font-weight: 700;
    color: var(--gold);
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
}

.container {
    max-width: 1000px;
    margin: 28px auto;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    background: var(--deep-green);
    color: var(--gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.ghost {
    background: transparent;
    color: var(--deep-green);
    text-decoration: none;
}

.form-row {
    margin-bottom: 12px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
}

.notice {
    padding: 10px;
    background: #fff7df;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    margin-bottom: 12px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 8px;
}

.actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* simple responsive */
@media (max-width:640px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .container {
        margin: 12px;
        padding: 12px;
    }
}