/* ============================================================
   LH GROUP - Main Stylesheet
   ============================================================ */

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

:root {
    --red:       #8B1A1A;
    --red-dark:  #6d1414;
    --gold:      #C9A84C;
    --navy:      #1B3A6B;
    --dark:      #1a1a1a;
    --gray:      #666;
    --light-gray:#f5f5f5;
    --border:    #e0e0e0;
    --white:     #ffffff;
    --section1:  #D4A017;
    --section2:  #D4A017;
    --section3:  #D4A017;
    --section4:  #D4A017;
    --section5:  #8B1A1A;
}

body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }



/* ---- NAV ---- */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.logo-lh {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--dark);
}
.logo-group {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--dark);
    font-weight: 400;
}
.logo-line {
    width: 30px;
    height: 2px;
    background: var(--red);
    margin-top: 3px;
}
.logo-sm .logo-lh { font-size: 16px; }
.logo-sm .logo-group { font-size: 7px; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-logged-as {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: .3px;
    font-weight: 400;
}

/* User Menu */
.user-menu { position: relative; }
.user-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
    transition: background .2s;
}
.user-btn:hover { background: var(--light-gray); }
.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    min-width: 200px;
    z-index: 200;
    overflow: hidden;
}
.user-dropdown.open { display: block; }
.user-dropdown-name {
    padding: 12px 16px 4px;
    font-weight: 600;
    font-size: 13px;
}
.user-dropdown-role {
    padding: 0 16px 10px;
    font-size: 11px;
    color: var(--gray);
    text-transform: capitalize;
}
.user-dropdown hr { border: none; border-top: 1px solid var(--border); }
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    font-size: 12px;
    color: var(--dark);
    transition: background .15s;
}
.user-dropdown a:hover { background: var(--light-gray); }
.user-dropdown a svg { flex-shrink: 0; color: var(--gray); }
.logout-link { color: var(--red) !important; }
.logout-link svg { color: var(--red) !important; }

.dropdown-section-label {
    padding: 6px 16px 2px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
}
.breadcrumb-inner a { color: var(--gray); }
.breadcrumb-inner a:hover { color: var(--red); }
.bc-sep { color: #ccc; }

/* ---- MAIN CONTENT ---- */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
    flex: 1;
}

/* ---- FOOTER ---- */
.main-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    margin-top: auto;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all .2s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   HOME PAGE
   ============================================================ */
.home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.home-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    background: #c9a88a;
    transition: transform .2s, box-shadow .2s;
}
.home-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.home-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.home-card-label {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.stats-card {
    background: #b0b0b0;
    color: var(--white);
    padding: 18px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: opacity .2s;
}
.stats-card:hover { opacity: .9; }

.section-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--dark);
}

/* Brand cards */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
.brand-card {
    background: var(--white);
    border-radius: 4px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    transition: box-shadow .2s;
    text-decoration: none;
}
.brand-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.brand-card.lapin { background: var(--red); }
.brand-card img { max-height: 60px; max-width: 100%; object-fit: contain; }
.brand-card .brand-text {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
}

/* Induction grid */
.induction-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.induction-card {
    background: #e8ddd0;
    border-radius: 4px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    transition: box-shadow .2s;
    text-decoration: none;
    color: var(--dark);
}
.induction-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.induction-week {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.induction-sub { font-size: 11px; color: var(--gray); }

/* ============================================================
   FORMS
   ============================================================ */
.form-page-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-page-desc {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 28px;
    max-width: 700px;
}
.assessment-form {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.form-meta {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}
.form-group label .required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 13px;
    color: var(--dark);
    outline: none;
    transition: border-color .2s;
    width: 100%;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* Date input wrapper */
.date-wrapper { position: relative; }
.date-wrapper input { padding-right: 36px; }
.date-wrapper .cal-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

/* Section Headers */
.section-header {
    background: var(--section1);
    color: var(--white);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-header.red { background: var(--red); }

/* Question rows */
.question-row {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.question-row:last-child { border-bottom: none; }
.question-text {
    font-size: 12.5px;
    color: var(--dark);
}
.question-text .required { color: var(--red); }
.rating-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.rating-btn {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    color: var(--dark);
}
.rating-btn:hover { border-color: var(--gold); background: #fdf8ec; }
.rating-btn.selected { border-color: var(--red); background: var(--red); color: var(--white); font-weight: 600; }

/* Checkbox rows */
.checkbox-section { padding: 16px 24px; }
.checkbox-group-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
}
.checkbox-item label {
    font-size: 12.5px;
    cursor: pointer;
}

/* Submit button */
.submit-wrap { padding: 20px 24px; }
.btn-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s;
    letter-spacing: 0.5px;
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================================
   STATISTICS PAGE
   ============================================================ */
.stats-page-title { font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.stats-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.stats-filters label { font-size: 13px; font-weight: 600; }
.stats-filters select {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 13px;
    background: var(--white);
    outline: none;
}
.filter-btn {
    background: #4CAF50;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter-btn svg { fill: white; }

.mean-score-box { text-align: center; margin-bottom: 30px; }
.mean-score-title { font-size: 15px; font-weight: 600; margin-bottom: 16px; }

/* Donut chart */
.donut-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.donut-label {
    font-size: 11px;
    text-align: center;
    color: var(--gray);
    max-width: 120px;
    line-height: 1.4;
}

.stats-section { margin-bottom: 36px; }
.stats-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.donuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.donut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 8px;
    padding: 20px 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.donut-card canvas { max-width: 110px; }
.donut-card .donut-q {
    font-size: 11px;
    text-align: center;
    color: var(--gray);
    line-height: 1.4;
}

/* ============================================================
   HISTORY TABLE
   ============================================================ */
.history-title { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 20px; }
.history-table-wrap {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.history-table { width: 100%; border-collapse: collapse; }
.history-table th {
    background: var(--white);
    padding: 12px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 2px solid var(--border);
}
.history-table td {
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}
.history-table tr:hover td { background: #fafafa; }
.table-pagination {
    padding: 12px 16px;
    text-align: right;
    font-size: 12px;
    color: var(--gray);
    border-top: 1px solid var(--border);
}
.btn-icon {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}
.btn-icon:hover { opacity: .8; }
.btn-icon.view { background: #666; color: white; }
.btn-icon.edit { background: var(--red); color: white; }
.btn-continue {
    display: block;
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px;
    transition: background .2s;
    text-align: center;
}
.btn-continue:hover { background: var(--red-dark); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.admin-sidebar {
    background: var(--white);
    border-radius: 8px;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    height: fit-content;
    position: sticky;
    top: 80px;
}
.admin-sidebar-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 8px 20px;
    text-transform: uppercase;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--dark);
    transition: all .15s;
    border-left: 3px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #fff5f5;
    border-left-color: var(--red);
    color: var(--red);
}
.admin-sidebar hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

.admin-main { }
.admin-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    overflow: hidden;
    margin-bottom: 20px;
}
.admin-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-card-title { font-size: 15px; font-weight: 600; }
.admin-card-body { padding: 20px; }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 4px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: var(--light-gray); color: var(--dark); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-danger { background: #dc2626; color: white; }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 5px 10px; font-size: 12px; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    border-bottom: 2px solid var(--border);
    background: #fafafa;
}
.data-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}
.data-table tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.badge-admin { background: #fef3c7; color: #92400e; }
.badge-editor { background: #dbeafe; color: #1e40af; }
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #fee2e2; color: #991b1b; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    overflow: hidden;
}
.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title { font-size: 16px; font-weight: 600; }
.modal-close { background: none; border: none; cursor: pointer; font-size: 20px; color: var(--gray); line-height: 1; }
.modal-body { padding: 20px; }
.modal-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* Alert */
.alert { padding: 12px 16px; border-radius: 4px; font-size: 13px; margin-bottom: 16px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* Login Page */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo .logo-lh { font-size: 32px; }
.login-title { text-align: center; font-size: 18px; font-weight: 600; margin-bottom: 24px; color: var(--gray); }
.login-form .form-group { margin-bottom: 16px; }
.login-form .form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.btn-login {
    width: 100%;
    background: var(--red);
    color: white;
    border: none;
    padding: 13px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}
.btn-login:hover { background: var(--red-dark); }

/* Stat boxes for admin */
.stat-boxes { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-box {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border-left: 4px solid var(--red);
}
.stat-box-num { font-size: 28px; font-weight: 700; color: var(--red); }
.stat-box-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── NAV MOBILE ── */
@media (max-width: 768px) {
    .nav-inner { padding: 10px 16px; }
    .nav-logged-as { display: none; }
    .logo-lh { font-size: 18px; }
    .logo-group { font-size: 7px; letter-spacing: 4px; }
}

/* ── HOME PAGE ── */
@media (max-width: 768px) {
    .home-grid, .stats-row { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .induction-grid { grid-template-columns: repeat(2, 1fr); }
    .donuts-grid { grid-template-columns: repeat(2, 1fr); }
    .form-meta { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
    .stat-boxes { grid-template-columns: repeat(2, 1fr); }
    .main-content { padding: 20px 16px; }
}
@media (max-width: 480px) {
    .brands-grid, .induction-grid { grid-template-columns: 1fr; }
    .donuts-grid { grid-template-columns: 1fr; }
    .main-content { padding: 16px 12px; }
}

/* ── FORMS ── */
@media (max-width: 600px) {
    .form-meta { grid-template-columns: 1fr; gap: 10px; padding: 14px 16px; }
    .question-row { padding: 10px 16px; }
    .checkbox-section { padding: 12px 16px; }
    .submit-wrap { padding: 14px 16px; }
    .rating-options { gap: 5px; }
    .rating-btn { padding: 5px 8px; font-size: 10px; }
    .section-header { padding: 10px 16px; font-size: 12px; }
}

/* ── HISTORY PAGE ── */
@media (max-width: 768px) {
    .pw { padding: 16px 14px 40px !important; }
    .phero { padding: 20px 16px 16px !important; flex-direction: column !important; }
    .phdeco { display: none !important; }
    .fbar { flex-direction: column !important; gap: 10px !important; padding: 12px 14px !important; }
    .fg { padding: 0 !important; border-right: none !important; width: 100%; }
    .fi { width: 100%; }
    .fbtns { padding-left: 0 !important; width: 100%; justify-content: flex-end; }
    .htbl th:nth-child(2), .htbl td:nth-child(2) { display: none; } /* hide user col on mobile */
}
@media (max-width: 500px) {
    .htbl th, .htbl td { padding: 10px 10px; }
    .tdate strong { font-size: 12px; }
    .tbadge { font-size: 8px; padding: 3px 7px; }
}

/* ── MODAL (view) ── */
@media (max-width: 600px) {
    .vmodal { width: 100% !important; max-height: 95vh !important; border-radius: 12px 12px 0 0 !important; }
    .vmodal-overlay { align-items: flex-end !important; }
    .vm-hd { padding: 14px 16px 12px !important; }
    .vm-body { padding: 14px 16px 20px !important; }
    .vm-cl-grid { grid-template-columns: 1fr !important; }
}
