:root {
    --blue: #073b83;
    --green: #079b34;
    --light-green: #eaf8ef;
    --gray: #f5f7fb;
    --text: #0f1f3d;
    --border: #d8e0ed;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: var(--text);
}
.topbar {
    background: var(--blue);
    color: white;
    padding: 10px 22px;
    font-size: 14px;
}
.header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 30px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: white;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.logo .liberia { color: var(--blue); }
.logo .market { color: var(--green); }
.tagline { font-size: 13px; color: #53637a; margin-top: 2px; }
.container { max-width: 1100px; margin: 35px auto; padding: 0 18px; }
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 31, 61, 0.06);
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.btn {
    display: inline-block;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.btn.secondary { background: white; color: var(--green); border: 1px solid var(--green); }
input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 6px;
}
label { font-weight: 700; font-size: 14px; }
.form-row { margin-bottom: 16px; }
.alert { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; }
.alert.success { background: var(--light-green); border: 1px solid #9bd7ac; color: #126b2c; }
.alert.error { background: #fff0f0; border: 1px solid #f1b6b6; color: #9b1c1c; }
.alert.info { background: #eef5ff; border: 1px solid #b5cdf2; color: #174a8b; }
.small { color: #637083; font-size: 13px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; }
.footer { text-align: center; color: #69788e; font-size: 13px; padding: 30px; }
