:root {
    --bcms-navy: #17324d;
    --bcms-blue: #2f6690;
    --bcms-light-blue: #eaf2f8;
    --bcms-light-gray: #f4f6f8;
    --bcms-border: #d9e0e6;
    --bcms-text: #263238;
    --bcms-muted: #6b7785;
    --bcms-white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bcms-light-gray);
    color: var(--bcms-text);
}

.header {
    background: var(--bcms-navy);
    color: var(--bcms-white);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.header-user {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header-user form {
    margin: 0;
}

.nav {
    background: var(--bcms-white);
    border-bottom: 1px solid var(--bcms-border);
    padding: 0 28px;
}

.nav a {
    display: inline-block;
    padding: 14px 18px;
    color: var(--bcms-navy);
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    background: var(--bcms-light-blue);
}

.container {
    max-width: 1200px;
    margin: 28px auto;
    padding: 0 24px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page-title {
    margin: 0;
    color: var(--bcms-navy);
}

.card {
    background: var(--bcms-white);
    border: 1px solid var(--bcms-border);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 5px;
    background: var(--bcms-blue);
    color: var(--bcms-white);
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.button:hover {
    opacity: 0.9;
}

.button-secondary {
    background: #6b7785;
}

.button-link {
    background: transparent;
    padding: 0;
    color: var(--bcms-white);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 11px 10px;
    border-bottom: 1px solid var(--bcms-border);
    text-align: left;
}

th {
    background: var(--bcms-light-blue);
    color: var(--bcms-navy);
}

.status-active {
    color: #237a3b;
    font-weight: 700;
}

.status-inactive {
    color: #9b2c2c;
    font-weight: 700;
}

.muted {
    color: var(--bcms-muted);
}