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

body {
    margin: 0;
    font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.g-3 {
    row-gap: 1rem;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
}

.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-block { display: block !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-middle { vertical-align: middle !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-muted { color: #647d7a !important; }
.opacity-0 { opacity: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: #08282b;
    background: #fff;
    border: 1px solid #d5dfec;
    border-radius: 14px;
}

.form-control:focus,
.form-select:focus {
    outline: 2px solid rgba(11, 109, 96, 0.18);
    border-color: #0b6d60;
}

.form-text {
    font-size: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #fff;
    color: #0a5149;
    font: inherit;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
}

.btn-sm {
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    border-radius: 11px;
    font-size: 0.9rem;
}

.btn-primary {
    color: #fff;
    background: #0b6d60;
    border-color: #0b6d60;
}

.btn-outline-primary {
    color: #0b6d60;
    border-color: #9fd8cc;
    background: #fff;
}

.btn-outline-secondary,
.btn-outline-dark {
    color: #183c38;
    border-color: #cbe2dd;
    background: #fff;
}

.btn-outline-danger {
    color: #b91c1c;
    border-color: #efbcbc;
    background: #fff;
}

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

.table th,
.table td {
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid #e7efed;
}

.table th {
    color: #365f5c;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.alert {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid #d5ebd9;
    background: #f5fbf8;
}

.alert-warning {
    border-color: #f3d59b;
    background: #fff8e8;
}
