*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: #212529;
    background: #fff;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

h1,
h2 {
    margin: 0 0 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
    margin: 0 0 1rem;
}

.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.75rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 1rem;
    padding: 1rem 0 0;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-inline: 0.5rem;
    color: #6c757d;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.list-group {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-group-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group .list-group {
    margin-top: 0.5rem;
}

.bg-light {
    background: #f8f9fa;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-3 {
    gap: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.fw-bold {
    font-weight: 700;
}

.text-end {
    text-align: end;
}

.ms-auto {
    margin-inline-start: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
