.accounting-page {
    --accounting-navy: #13213a;
    --accounting-navy-soft: #20395f;
    --accounting-orange: #f1911c;
    --accounting-green: #198754;
    --accounting-blue: #2563eb;
    --accounting-red: #dc3545;
    --accounting-surface: #ffffff;
    --accounting-bg: #f6f8fc;
    --accounting-border: #dce3ee;
    --accounting-muted: #64748b;
    color: var(--accounting-navy);
}

.accounting-page .gesnote-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.68rem 1rem;
    border: 1px solid var(--accounting-red);
    border-radius: 10px;
    color: #fff;
    background: var(--accounting-red);
    font-weight: 800;
}

.accounting-page button {
    font: inherit;
}

.accounting-flash {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    border-left: 5px solid currentColor;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.accounting-flash__icon {
    display: inline-flex;
    font-size: 1.05rem;
}

.accounting-hero {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(241, 145, 28, 0.42),
            transparent 31%
        ),
        linear-gradient(135deg, var(--accounting-navy), #203b64);
    box-shadow: 0 22px 55px rgba(19, 33, 58, 0.2);
}

.accounting-hero::before {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -130px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.accounting-hero__eyebrow,
.accounting-breadcrumb-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--accounting-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.accounting-hero h2 {
    max-width: 760px;
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1.22;
}

.accounting-hero p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    line-height: 1.65;
}

.accounting-hero__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 105px;
    height: 105px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(8px);
    font-size: 3rem;
    transform: rotate(-4deg);
}

.accounting-kpi {
    height: 100%;
    min-height: 128px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--accounting-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(15, 23, 42, 0.07);
}

.accounting-kpi__icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.45rem;
}

.accounting-kpi__icon.is-navy {
    color: #fff;
    background: var(--accounting-navy);
}

.accounting-kpi__icon.is-orange {
    color: #8a4c04;
    background: #fff0d9;
}

.accounting-kpi__icon.is-green {
    color: #137047;
    background: #e7f7ef;
}

.accounting-kpi__icon.is-blue {
    color: #1d4ed8;
    background: #e8efff;
}

.accounting-kpi__label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accounting-muted);
    font-size: 0.79rem;
    font-weight: 800;
    line-height: 1.3;
}

.accounting-kpi strong {
    display: block;
    color: var(--accounting-navy);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.2;
}

.accounting-kpi strong small {
    font-size: 0.68em;
}

.accounting-kpi .accounting-kpi__date {
    font-size: 1.12rem;
}

.accounting-panel {
    overflow: hidden;
    border: 1px solid var(--accounting-border);
    border-radius: 22px;
    background: var(--accounting-surface);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.accounting-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid var(--accounting-border);
}

.accounting-panel__header h2 {
    margin: 0 0 0.25rem;
    color: var(--accounting-navy);
    font-size: 1.08rem;
    font-weight: 900;
}

.accounting-panel__header p {
    margin: 0;
    color: var(--accounting-muted);
    font-size: 0.84rem;
}

.accounting-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accounting-orange);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.accounting-link:hover {
    color: #ca6f08;
}

.accounting-search-form {
    padding: 1.35rem;
}

.accounting-search-form .input-group-text {
    border-color: #ccd6e5;
    color: var(--accounting-muted);
    background: #f7f9fc;
}

.accounting-search-form .form-control,
.accounting-search-form .form-select,
.accounting-modal .form-control,
.accounting-modal .form-select {
    min-height: 44px;
    border-color: #ccd6e5;
    border-radius: 10px;
}

.accounting-search-form .input-group .form-control {
    border-radius: 0 10px 10px 0;
}

.accounting-modal textarea.form-control {
    min-height: 118px;
}

.accounting-search-form .form-control:focus,
.accounting-search-form .form-select:focus,
.accounting-modal .form-control:focus,
.accounting-modal .form-select:focus {
    border-color: rgba(241, 145, 28, 0.7);
    box-shadow: 0 0 0 0.23rem rgba(241, 145, 28, 0.13);
}

.accounting-table {
    --bs-table-bg: transparent;
}

.accounting-table thead th {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--accounting-border);
    color: #4b5d77;
    background: #f7f9fc;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.accounting-table tbody td {
    padding: 1rem;
    border-color: #edf1f7;
    color: #334155;
    font-size: 0.88rem;
    vertical-align: middle;
}

.accounting-table tbody tr {
    transition: background-color 0.18s ease;
}

.accounting-table tbody tr:hover {
    background: #fafbfd;
}

.accounting-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 245px;
}

.accounting-person__avatar {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, var(--accounting-navy), #2b4b79);
    font-weight: 900;
}

.accounting-person strong,
.accounting-person small {
    display: block;
}

.accounting-person strong {
    color: var(--accounting-navy);
    font-size: 0.9rem;
}

.accounting-person small {
    margin-top: 0.15rem;
    color: var(--accounting-muted);
    font-size: 0.73rem;
}

.accounting-number {
    display: inline-flex;
    padding: 0.38rem 0.58rem;
    border: 1px solid rgba(19, 33, 58, 0.11);
    border-radius: 8px;
    color: var(--accounting-navy);
    background: #eff3f9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.accounting-type-badge,
.accounting-soft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.accounting-type-badge {
    color: #9a5807;
    background: #fff0d9;
}

.accounting-soft-badge {
    color: #42536d;
    background: #eef2f7;
}

.accounting-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.accounting-icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.accounting-icon-btn:hover {
    transform: translateY(-2px);
}

.accounting-icon-btn.is-view {
    border-color: #bfd0f8;
    color: #1d4ed8;
    background: #eef3ff;
}

.accounting-icon-btn.is-edit {
    border-color: #f8d7a7;
    color: #a35c06;
    background: #fff4e3;
}

.accounting-icon-btn.is-delete {
    border-color: #f3c5ca;
    color: #c52e3d;
    background: #fff0f2;
}

.accounting-empty {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 2rem;
    color: var(--accounting-muted);
    text-align: center;
}

.accounting-empty > i {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    border-radius: 18px;
    color: var(--accounting-orange);
    background: #fff0d9;
    font-size: 1.7rem;
}

.accounting-empty strong {
    color: var(--accounting-navy);
    font-size: 1.02rem;
}

.accounting-empty span {
    max-width: 500px;
    font-size: 0.86rem;
}

.accounting-empty--card {
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    background: #fff;
}

.accounting-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border-top: 1px solid var(--accounting-border);
}

.accounting-pagination-summary {
    color: var(--accounting-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.accounting-pagination {
    gap: 0.28rem;
}

.accounting-pagination .page-link {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px !important;
    color: #52637c;
    background: #f0f3f8;
    font-size: 0.8rem;
    font-weight: 800;
}

.accounting-pagination .page-item.active .page-link {
    color: #fff;
    background: var(--accounting-navy);
    box-shadow: 0 8px 18px rgba(19, 33, 58, 0.2);
}

.accounting-modal {
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 30px 95px rgba(15, 23, 42, 0.3);
}

.accounting-modal__header {
    padding: 1.35rem 1.5rem;
    border: 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 88% -60%,
            rgba(241, 145, 28, 0.55),
            transparent 45%
        ),
        linear-gradient(135deg, var(--accounting-navy), #203b64);
}

.accounting-modal__header .modal-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.accounting-modal__header p {
    margin: 0.15rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.accounting-modal__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.35rem;
}

.accounting-modal__footer {
    padding: 1rem 1.4rem;
    border-top: 1px solid var(--accounting-border);
    background: #f8fafc;
}

.accounting-confirm-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: var(--accounting-red);
    background: #ffedf0;
    font-size: 2rem;
}

.accounting-form-section {
    padding: 1.3rem;
    border: 1px solid var(--accounting-border);
    border-radius: 18px;
    background: #fff;
}

.accounting-form-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.accounting-form-section__heading > span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--accounting-navy);
    font-size: 0.74rem;
    font-weight: 900;
}

.accounting-form-section__heading h3 {
    margin: 0 0 0.18rem;
    color: var(--accounting-navy);
    font-size: 1rem;
    font-weight: 900;
}

.accounting-form-section__heading p {
    margin: 0;
    color: var(--accounting-muted);
    font-size: 0.79rem;
}

.accounting-client-error {
    border: 0;
    border-left: 5px solid var(--accounting-red);
    border-radius: 12px;
}

.accounting-dropzone {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1.5rem;
    border: 2px dashed #bdc9da;
    border-radius: 18px;
    color: var(--accounting-muted);
    background: #f8fafc;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.accounting-dropzone:hover,
.accounting-dropzone:focus-visible,
.accounting-dropzone.is-dragover {
    border-color: var(--accounting-orange);
    background: #fff8ee;
    outline: none;
}

.accounting-dropzone.is-dragover {
    transform: scale(1.005);
}

.accounting-dropzone__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #a75f07;
    background: #ffe9c7;
    font-size: 1.65rem;
}

.accounting-dropzone strong {
    color: var(--accounting-navy);
    font-size: 1rem;
}

.accounting-dropzone > span:not(.accounting-dropzone__icon),
.accounting-dropzone small {
    font-size: 0.76rem;
}

.accounting-document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.accounting-document-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.8rem;
    border: 1px solid var(--accounting-border);
    border-radius: 14px;
    background: #fff;
}

.accounting-document-card__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accounting-orange);
    background: #fff0d9;
    font-size: 1.25rem;
}

.accounting-document-card__content {
    min-width: 0;
}

.accounting-document-card__content strong,
.accounting-document-card__content small {
    display: block;
}

.accounting-document-card__content strong {
    overflow: hidden;
    color: var(--accounting-navy);
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.accounting-document-card__content small {
    margin-top: 0.18rem;
    color: var(--accounting-muted);
    font-size: 0.68rem;
}

.accounting-document-card__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.accounting-document-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 34px;
    padding: 0.4rem 0.55rem;
    border: 1px solid var(--accounting-border);
    border-radius: 9px;
    color: #42536d;
    background: #f7f9fc;
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none;
}

.accounting-document-action.is-delete {
    border-color: #f2c9cd;
    color: #bd2c3a;
    background: #fff3f4;
}

.accounting-expense-card {
    height: 100%;
    min-height: 305px;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    border: 1px solid var(--accounting-border);
    border-radius: 20px;
    color: var(--accounting-navy);
    background:
        linear-gradient(135deg, rgba(241, 145, 28, 0.055), transparent 38%),
        #fff;
    box-shadow: 0 13px 36px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.accounting-expense-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 145, 28, 0.48);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.accounting-expense-card--clickable {
    min-height: 270px;
    text-decoration: none;
}

.accounting-expense-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.accounting-expense-card h3 {
    margin: 0 0 0.65rem;
    color: var(--accounting-navy);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
}

.accounting-expense-card > p {
    margin: 0 0 1rem;
    color: var(--accounting-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.accounting-expense-card__payee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accounting-muted);
    font-size: 0.8rem;
}

.accounting-expense-card__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.accounting-expense-card__facts span {
    padding: 0.72rem;
    border-radius: 12px;
    background: #f5f7fa;
}

.accounting-expense-card__facts small,
.accounting-expense-card__facts strong {
    display: block;
}

.accounting-expense-card__facts small {
    margin-bottom: 0.25rem;
    color: var(--accounting-muted);
    font-size: 0.65rem;
}

.accounting-expense-card__facts strong {
    color: var(--accounting-navy);
    font-size: 0.78rem;
}

.accounting-expense-card__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    padding-top: 0.85rem;
    border-top: 1px solid #edf1f6;
}

.accounting-card-btn {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    padding: 0.45rem 0.35rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 900;
}

.accounting-card-btn.is-edit {
    border-color: #f8d7a7;
    color: #9e5804;
    background: #fff4e3;
}

.accounting-card-btn.is-delete {
    border-color: #f3c5ca;
    color: #c52e3d;
    background: #fff0f2;
}

.accounting-card-btn.is-view {
    border-color: #bfd0f8;
    color: #1d4ed8;
    background: #eef3ff;
}

.accounting-expense-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #edf1f6;
    color: var(--accounting-muted);
    font-size: 0.76rem;
}

.accounting-expense-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.accounting-expense-card__meta strong {
    color: var(--accounting-navy);
    font-size: 0.88rem;
    white-space: nowrap;
}

.accounting-expense-card__open {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    margin-top: 0.8rem;
    color: var(--accounting-orange);
    font-size: 0.75rem;
    font-weight: 900;
}

.accounting-supplier-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--accounting-border);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(19, 33, 58, 0.025), transparent 45%),
        #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.accounting-supplier-profile__avatar {
    flex: 0 0 auto;
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, var(--accounting-navy), #2b4b79);
    box-shadow: 0 13px 28px rgba(19, 33, 58, 0.22);
    font-size: 2.1rem;
    font-weight: 900;
}

.accounting-supplier-profile__identity h2 {
    margin: 0.45rem 0 0.6rem;
    color: var(--accounting-navy);
    font-size: 1.45rem;
    font-weight: 900;
}

.accounting-supplier-profile__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.15rem;
    color: var(--accounting-muted);
    font-size: 0.8rem;
}

.accounting-supplier-profile__contacts span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.accounting-view-loading {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--accounting-muted);
}

.accounting-view-loading .spinner-border {
    color: var(--accounting-orange);
}

.accounting-view-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--accounting-navy), #284a79);
}

.accounting-view-amount span {
    display: block;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.72rem;
    font-weight: 800;
}

.accounting-view-amount h3 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.accounting-view-amount > strong {
    color: #ffd8a7;
    font-size: 1.25rem;
    font-weight: 900;
    white-space: nowrap;
}

.accounting-view-field {
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--accounting-border);
    border-radius: 14px;
    background: #fff;
}

.accounting-view-field > small {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--accounting-muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.accounting-view-field > strong,
.accounting-view-field > p {
    color: var(--accounting-navy);
    font-size: 0.84rem;
}

.accounting-view-field > p {
    margin: 0;
    white-space: pre-line;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .accounting-hero {
        min-height: auto;
    }

    .accounting-hero__icon {
        display: none;
    }

    .accounting-panel__header,
    .accounting-pagination-wrap,
    .accounting-view-amount {
        align-items: flex-start;
        flex-direction: column;
    }

    .accounting-pagination {
        flex-wrap: wrap;
    }

    .accounting-document-grid {
        grid-template-columns: 1fr;
    }

    .accounting-supplier-profile {
        align-items: flex-start;
        flex-direction: column;
    }

    .accounting-expense-card__facts {
        grid-template-columns: 1fr;
    }

    .accounting-view-amount > strong {
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .accounting-expense-card__actions {
        grid-template-columns: 1fr;
    }

    .accounting-kpi {
        min-height: 110px;
    }
}
