

/* Start:/local/templates/mobileapp/styles.css?17729957535941*/
:root {
    --brand: #a42044;
    --brand-dark: #7f1633;
    --bg: #f7f8fb;
    --card: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --font: Manrope, Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--brand);
}
.header__burger {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    background: #fff;
}

.container {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 18px;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    margin: 20px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 12px 30px rgba(164,32,68,0.25);
}
.btn-secondary {
    background: #f3f4f6;
    color: var(--text);
    border: 1px solid var(--border);
}

.input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
}
.input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(164,32,68,0.12);
}

/* map legacy bootstrap form controls to new style */
.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(164,32,68,0.12);
}
.form-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; display:block; }
.form-check { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.form-check-input { width: 18px; height: 18px; }
.invalid-feedback { color: #c0362c; font-size: 13px; margin-top: 4px; }
.is-invalid { border-color: #c0362c !important; box-shadow: 0 0 0 2px rgba(192,54,44,0.2) !important; }
.is-valid { border-color: #11743d !important; box-shadow: 0 0 0 2px rgba(17,116,61,0.15) !important; }
.error-message { display:none; color:#c0362c; margin-top:8px; }

.row { display: flex; flex-wrap: wrap; gap: 12px; }
[class*="col-"] { flex: 1 1 100%; min-width: 0; }
@media (min-width: 720px) {
    .col-md-4 { flex-basis: calc(33.333% - 12px); }
    .col-md-6 { flex-basis: calc(50% - 12px); }
}

.section-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
}
.section-sub {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
}

.list {
    display: grid;
    gap: 12px;
}
.list-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.list-item__title { font-weight: 700; margin: 0 0 6px; }
.list-item__meta { color: var(--muted); font-size: 14px; }

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}
.status-ok { background: #e7f6ec; color: #11743d; }
.status-warn { background: #fff3e0; color: #a35b00; }
.status-bad { background: #ffe8e6; color: #c0362c; }

.form-grid {
    display: grid;
    gap: 12px;
}
@media (min-width: 720px) {
    .form-grid.two-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .form-grid.three-cols { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.signature-box {
    width: 100%;
    height: 180px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: #fff;
}

.alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid transparent;
    margin-bottom: 12px;
}
.alert-info { background: #edf5ff; border-color: #d7e6ff; color: #0d3f91; }
.alert-warn { background: #fff3e0; border-color: #ffe0b2; color: #a35b00; }
.alert-error{ background: #ffe8e6; border-color: #f6b4ad; color: #c0362c; }
.alert-success{ background: #e7f6ec; border-color: #c7e8d3; color: #11743d; }

.hidden { display: none !important; }

.bottom-nav-spacer { height: 76px; }
.bottom-nav {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 94%);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 200;
}
.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 6px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.bottom-nav a.active {
    color: var(--brand);
    background: rgba(164,32,68,0.08);
}
.bottom-nav svg { width: 22px; height: 22px; }

/* End */


/* Start:/local/templates/mobileapp/template_styles.css?1773079062524*/
.nav-label{
    display:flex;
    align-items:center;
    gap:6px;
}

.menu-counter{
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:20px;
    background:#ff3b30;
    color:#fff;
    font-size:11px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
}

@keyframes pulseCounter{
    0%{transform:scale(1);opacity:1}
    50%{transform:scale(1.15);opacity:.6}
    100%{transform:scale(1);opacity:1}
}

.menu-counter{
    animation:pulseCounter 1.2s infinite;
}

/* End */
/* /local/templates/mobileapp/styles.css?17729957535941 */
/* /local/templates/mobileapp/template_styles.css?1773079062524 */
