/* ==========================================================================
   FORMS PREMIUM — DESIGN SYSTEM & RESPONSIVIDADE
   ========================================================================== */

/* === Card Principal === */
.prem-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px -4px rgba(0,0,0,0.06);
    padding: 3rem;
    position: relative;
    margin-bottom: 2rem;
}

/* === Cabeçalho Premium === */
.ticket-header-prem {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.ticket-header-prem .prem-tag {
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.ticket-header-prem h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ticket-header-prem h2 i {
    color: #38bdf8;
}

.ticket-header-prem .prem-btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.ticket-header-prem .prem-btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* === Formulário & Inputs === */
.prem-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    margin-bottom: 0.5rem;
    display: block;
}

.prem-input {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.01);
}

.prem-input:focus {
    border-color: var(--primary-color, #2a6e83);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(42, 110, 131, 0.15);
    outline: none;
}

/* === Caixa de Ativação via E-mail / Toggle === */
.prem-activation-box {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #cbd5e1;
    border-radius: 16px;
    padding: 2rem;
}

.prem-activation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.prem-activation-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.prem-activation-icon {
    background: #e0f2fe;
    color: #0284c7;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prem-activation-text {
    min-width: 0;
}

.prem-activation-title {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prem-activation-desc {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prem-toggle {
    transform: scale(1.1);
    flex-shrink: 0;
    margin: 0;
}

.prem-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.4) !important;
}

.prem-manual-pass {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #cbd5e1;
}

.prem-manual-pass small {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* === Botão de Submissão === */
.prem-form-actions {
    margin-top: 3.5rem;
    text-align: right;
}

.prem-btn-submit {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    border: none;
    padding: 0.95rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.prem-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
    color: #fff;
}

.prem-btn-submit i {
    color: #38bdf8;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 768px) {
    .ticket-header-prem {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .ticket-header-prem h2 {
        font-size: 1.4rem;
        justify-content: center;
    }

    .ticket-header-prem .prem-btn-back {
        width: 100%;
        justify-content: center;
    }

    .prem-card {
        padding: 1.5rem;
    }

    .prem-activation-box {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .prem-activation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .prem-activation-title,
    .prem-activation-desc {
        white-space: normal;
        word-break: break-word;
    }

    .prem-toggle {
        align-self: flex-end;
    }

    .prem-form-actions {
        margin-top: 2rem;
        text-align: center;
    }

    .prem-btn-submit {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }
}

/* === Tabelas Premium === */
.prem-table-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.prem-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.prem-table th {
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.prem-table td {
    padding: 1.25rem 1.5rem;
    color: #1e293b;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.prem-table tbody tr {
    transition: background-color 0.2s ease;
}

.prem-table tbody tr:hover {
    background-color: #f8fafc;
}

/* === Badges Premium === */
.prem-status-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.prem-badge-ativo {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.prem-badge-inativo {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.prem-badge-analise {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.prem-badge-pago {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.prem-badge-pendente {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

/* === Authentication Premium Layout (`.auth-page`, `.auth-card`) === */
body.auth-body, .auth-page {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    min-height: 100vh;
    width: 100%;
    max-width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.auth-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    padding: 50px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
    margin: auto;
}
.auth-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 35px auto !important;
    display: block;
}
.auth-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.welcome-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}
.welcome-text strong {
    color: #0284c7;
    font-weight: 700;
}
.form-group {
    margin-bottom: 24px;
    text-align: left;
}
.form-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}
.form-control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #0284c7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
    outline: none;
}
.btn-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-sizing: border-box;
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.4);
    color: #ffffff;
}
.btn-premium i {
    color: #38bdf8;
}
.btn-outline-prem {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: #475569;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-sizing: border-box;
}
.btn-outline-prem:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}
.alert-premium {
    padding: 25px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
}
.alert-success-prem {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.alert-error-prem {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.alert-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

/* === Topbar Premium Dropdown === */
.prem-user-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.35rem 0.8rem 0.35rem 0.35rem;
    border-radius: 30px;
    transition: all 0.2s ease;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.prem-user-pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.prem-user-pill .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #38bdf8;
}
.prem-user-info {
    text-align: left;
    line-height: 1.2;
}
.prem-user-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    display: block;
}
.prem-user-role {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: capitalize;
    display: block;
}

.prem-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
    display: none;
    flex-direction: column;
    padding: 0.6rem;
    margin-top: 0.8rem;
    z-index: 1000;
}
.prem-dropdown-menu.show {
    display: flex;
}
.prem-dropdown-header {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border-radius: 12px;
}
.prem-dropdown-header .header-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
    display: block;
}
.prem-dropdown-header .header-email {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
    word-break: break-all;
}
.prem-dropdown-item {
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: #1e293b;
    transition: all 0.2s ease;
    text-decoration: none;
}
.prem-dropdown-item i {
    color: #0284c7;
    width: 20px;
    font-size: 1.05rem;
}
.prem-dropdown-item:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.prem-dropdown-item.text-error {
    color: #ef4444;
}
.prem-dropdown-item.text-error i {
    color: #ef4444;
}
.prem-dropdown-item.text-error:hover {
    background: #fef2f2;
    color: #dc2626;
}
.prem-dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

/* --- Botões de Ação Globais Compactos (Padrão Sóbrio/Minimalista) --- */
.action-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-action-view:hover {
    color: #0284c7;
    border-color: #0284c7;
    background: #f0f9ff;
}

.btn-action-edit:hover {
    color: #d97706;
    border-color: #d97706;
    background: #fff7ed;
}

.btn-action-delete:hover {
    color: #dc2626;
    border-color: #dc2626;
    background: #fef2f2;
}

.btn-action-success:hover {
    color: #10b981;
    border-color: #10b981;
    background: #ecfdf5;
}

/* --- Filtros Premium Globais (.filter-card-premium) --- */
.filter-card-premium { background: white; border-radius: 16px; padding: 1.5rem 1.75rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; margin-bottom: 2.5rem; position: relative; overflow: visible; box-sizing: border-box; }
.filter-title { font-size: 0.95rem; font-weight: 800; color: #0f172a; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.filter-title i { color: #0284c7; }
.filter-grid { display: flex; gap: 1.25rem; align-items: flex-start; flex-wrap: wrap; }
.filter-grid .form-group { flex: 1; min-width: 180px; margin: 0; position: relative; box-sizing: border-box; }
.filter-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; align-self: flex-end; height: 48px; }
.filter-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #475569; margin-bottom: 0.5rem; display: block; letter-spacing: 0.5px; }

/* Input de Busca Premium nos Filtros */
.input-icon-wrapper { position: relative; width: 100%; box-sizing: border-box; }
.input-icon-wrapper input { width: 100%; border-radius: 10px; border: 2px solid #e2e8f0; padding: 0.7rem 1rem 0.7rem 2.5rem; font-size: 0.95rem; color: #1e293b; background: #f8fafc; transition: all 0.2s; font-weight: 500; box-sizing: border-box; height: 48px; }
.input-icon-wrapper input:focus { border-color: #0284c7; background: #ffffff; outline: none; box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12); }
.input-icon-wrapper i { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 0.95rem; pointer-events: none; }

/* Botões do Filtro Premium */
.btn-filter { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); color: white; padding: 0 1.5rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25); height: 48px; box-sizing: border-box; text-decoration: none; }
.btn-filter:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35); color: white; }
.btn-clear { background: #f8fafc; color: #64748b; padding: 0 1.25rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; border: 1px solid #e2e8f0; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; transition: all 0.2s; text-decoration: none; height: 48px; box-sizing: border-box; }
.btn-clear:hover { background: #f1f5f9; color: #0f172a; border-color: #cbd5e1; }

@media (max-width: 768px) {
    .filter-grid { flex-direction: column; align-items: stretch; gap: 1rem; }
    .filter-actions { justify-content: flex-end; align-self: stretch; flex-wrap: wrap; height: auto; }
    .filter-actions .btn-filter, .filter-actions .btn-clear { flex: 1; min-width: 120px; }
}

/* ==========================================================================
   COMPONENTES JS REUTILIZÁVEIS (FILTROS DINÂMICOS E DROPDOWNS)
   Documentação para IA: Reutilize estas classes ao criar seletores com
   autocompletar ou menus customizados, mantendo o código limpo e sem CSS inline.
   ========================================================================== */

/* --- Dropdown de Sugestões JS para Filtros Dinâmicos --- */
/* Container absoluto exibido sob o input de busca durante a digitação */
.search-suggestions-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border: 1px solid #cbd5e1; border-radius: 10px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); z-index: 120; max-height: 240px; overflow-y: auto; margin-top: 0.35rem; display: none; }
.suggestion-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; cursor: pointer; transition: background 0.2s; border-bottom: 1px solid #f1f5f9; }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: #f8fafc; }
.suggestion-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: #0284c7; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; overflow: hidden; flex-shrink: 0; }
.suggestion-avatar img { width: 100%; height: 100%; object-fit: cover; }
.suggestion-info { display: flex; flex-direction: column; overflow: hidden; }
.suggestion-name { font-size: 0.875rem; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggestion-email { font-size: 0.75rem; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Card da Entidade Selecionada (Técnico / Cliente) --- */
/* Ocupa o lugar do input de busca após a seleção, contendo botão integrado para limpar */
.tech-card { display: flex; align-items: center; justify-content: space-between; background: #f0f9ff; border: 2px solid #0284c7; padding: 0 0.75rem; border-radius: 10px; margin-top: 0; height: 48px; box-sizing: border-box; animation: fadeIn 0.2s ease-out; width: 100%; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.tech-card-left { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.tech-card-avatar { width: 2rem; height: 2rem; border-radius: 50%; background: #0284c7; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; overflow: hidden; flex-shrink: 0; }
.tech-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tech-card-name { font-size: 0.875rem; font-weight: 700; color: #0369a1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-remove-tech { background: none; border: none; color: #0284c7; cursor: pointer; padding: 0.25rem; font-size: 1rem; transition: color 0.2s; display: flex; align-items: center; justify-content: center; height: 100%; }
.btn-remove-tech:hover { color: #dc2626; }

/* --- Custom Status Dropdown --- */
/* Substituto rico e personalizável para elementos <select> nativos */
.custom-dropdown-container { position: relative; width: 100%; user-select: none; }
.custom-dropdown-header { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px; cursor: pointer; transition: all 0.2s ease; height: 48px; box-sizing: border-box; }
.custom-dropdown-header:hover { border-color: #cbd5e1; background: #ffffff; }
.custom-dropdown-header.open { border-color: #0284c7; background: #ffffff; box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12); }
.custom-dropdown-header.open #statusChevron { transform: rotate(180deg); }
.custom-dropdown-menu { position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); z-index: 110; margin-top: 0.35rem; overflow: hidden; display: none; animation: fadeInDropdown 0.15s ease-out; }
@keyframes fadeInDropdown { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.custom-dropdown-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 1rem; cursor: pointer; transition: all 0.2s ease; border-bottom: 1px solid #f1f5f9; }
.custom-dropdown-item:last-child { border-bottom: none; }
.custom-dropdown-item:hover { background: #f8fafc; }
.custom-dropdown-item.active { background: #f0f9ff; border-left: 3px solid #0284c7; }
.custom-dropdown-item i { font-size: 1.15rem; width: 24px; text-align: center; }
