:root {
    --brand-red: #c62828;
    --brand-black: #111111;
    --brand-gray: #6c757d;
    --brand-light-gray: #f2f2f2;
}

body {
    background-color: var(--brand-light-gray);
    color: var(--brand-black);
}

.app-container {
    max-width: 520px;
    margin: auto;
}

.brand-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.brand-header img {
    height: auto;
    max-width: 200px;
    width: 60%;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .brand-header img {
        width: 180px;
    }
}

.brand-header h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-panel {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
}

.btn-primary {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-primary:hover {
    background-color: #a61f1f;
    border-color: #a61f1f;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--brand-gray);
}
.card-panel {
    overflow-x: auto;
}

.table td,
.table th {
    vertical-align: middle;
}

.table th {
    white-space: nowrap;
}
