:root {
    --brand-green: #18bd65;
    --brand-green-dark: #10934e;
    --brand-blue: #2557f6;
    --text-main: #202124;
    --text-muted: #667085;
    --border-light: #e5e8ef;
    --page-bg: #f7f8fb;
}

body {
    background: var(--page-bg);
    color: var(--text-main);
}

.btn-brand {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    font-weight: 700;
}

.btn-brand:hover {
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    color: #fff;
}

.card-soft {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.icon-action-btn {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    border: 1px solid #111827;
    color: #111827;
    background: #fff;
}

.icon-action-btn:hover,
.icon-action-btn:focus,
.icon-action-btn.active {
    color: #fff;
    background: #111827;
    border-color: #111827;
}

.icon-action-btn svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.user-role-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    vertical-align: middle;
}

.user-role-badge__picture {
    display: inline-flex;
    flex: 0 0 auto;
}

.user-role-badge__img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.navbar-text .user-role-badge {
    min-height: 1.5rem;
}

.navbar-text .user-role-badge__img {
    width: 1.5rem;
    height: 1.5rem;
}

.form-control.empty-friendly-alert:placeholder-shown {
    background-color: #fff8e6;
    border-color: #f0c36d;
}

.form-control.empty-friendly-alert:focus {
    background-color: #fff;
}
