/* ═══════════════════════════════════════════════════════════════
   MEDLOG Estado de Maniobras — styles.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --gold: #eed484;
  --gold-light: #e6c547;
  --gold-dark: #515048;
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-surface: #fafafa;
  --border: #e0e0e0;
  --bg-hover: #f0f0f0;
  --text: #1a1a1a;
  --text-muted: #555555;
  --text-dim: #888888;
  --green: #16a34a;
  --yellow: #ca8a04;
  --red: #dc2626;
  --radius: 12px;
  --radius-sm: 8px;
}
/*INPUTS CHECKBOX*/

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}
input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease;
  background: currentColor;
  border-radius: 3px;
}
input[type="checkbox"]:checked {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
  background: #fff;
}
/* BARRA SCROLL  */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}
/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*body, h1 y p, span*/
body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
p,
span,
label,
div {
  font-family: "Ubuntu", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

.hidden {
  display: none !important;
}

/* ─── LAYOUT ─── */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ─── HEADER ─── */
.header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 1px;
}
.header-logo img {
  height: 33px;
}
.header-nav,
.header-nav-public {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-btn:hover {
  color: var(--text);
  background: var(--bg-hover);
}

.nav-btn.active {
  color: var(--gold-dark);
  background-color: #fffbf0;
  border-color: rgba(200, 169, 81, 0.25);
}

.nav-btn-gold {
  color: var(--gold-dark);
  border: none;
  padding: 8px 10px;
  margin-left: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-btn-gold:hover {
  color: white;
  background-color: var(--gold);
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-surface);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.user-role {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
}

.icon-close {
  display: none;
}
button[aria-expanded="true"] .icon-menu {
  display: none;
}

button[aria-expanded="true"] .icon-close {
  display: inline;
}

/* ─── PAGE HEADER ─── */
.page-header {
  margin-bottom: 40px;
}

.page-header-label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 640px;
  line-height: 1.6;
}
/* ─── MODAL CERRAR SESION ─── */

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
}

.modal-overlay.is-open {
  display: flex;
}

/* Caja modal Cerrar Sesion */
.modal {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.modal h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.modal p {
  margin: 0 0 14px;
  opacity: 0.75;
  line-height: 1.35;
  font-size: 14px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  cursor: pointer;
}

/* ─── LOGIN ─── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f5f3ed 100%);
  position: relative;
  overflow: hidden;
}

.login-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--bg-surface);
}

.login-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  width: 440px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.login-card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.login-card-logo div {
  display: flex;
  align-items: center;
  margin: 0 0 30px 0;
}
.login-card-logo div img {
  height: 50px;
  width: auto;
}
.login-card-logo::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #c9a227;
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.7;
}
.login-card-logo h1 {
  font-size: 24px;
  color: var(--text);
  font-weight: 700;
}

.login-card-logo p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.login-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}

.login-hint b {
  color: var(--text-muted);
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  position: relative;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.2s;
  outline: none;
}
.icon-eye {
  position: absolute;
  right: 15px;
  top: 30px;
  opacity: 50%;
  cursor: pointer;
  transition: all 0.12s;
}
.icon-eye:hover {
  opacity: 80%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-select.patio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 150px;
}
.form-select.patio label {
  display: flex;
  gap: 20px;
}
.form-textarea {
  resize: vertical;
  min-height: 60px;
}

.error-msg {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--red);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--gold-dark);
  color: white;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  padding: 10px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--text-dim);
}

.btn-sm {
  padding: 8px 16px;
  background: rgba(200, 169, 81, 0.1);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-sm:hover {
  background: rgba(200, 169, 81, 0.2);
}
.btn-modal {
  padding: 8px 16px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-admin-danger {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: #c62828;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-admin-danger:hover {
  background: #c62828;
  color: #ffffff;
  border-color: #c62828;
  transform: translateY(-1px);
}

.btn-admin-danger:active {
  transform: translateY(0px);
  opacity: 0.85;
}
.btn-danger {
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: rgba(220, 38, 38, 0.15);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 0;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--gold-dark);
}

/* ─── DASHBOARD ─── */
.dashboard-banner {
  background-color: #fffbf0;
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dashboard-banner-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 81, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-banner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.dashboard-banner p {
  font-size: 14px;
  color: var(--text-muted);
}

.dashboard-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.dashboard-table-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  padding: 16px 28px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.dashboard-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}

.dashboard-table-row:last-child {
  border-bottom: none;
}

.dashboard-table-row:hover {
  background: var(--bg-hover);
}

.patio-name-cell {
  font-weight: 600;
  font-size: 15px;
}

.date-cell {
  font-size: 14px;
  color: var(--text-muted);
}

.details-cell {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── STATUS BADGE ─── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
  border-color: inherit;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ─── PATIO CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.patio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.patio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 169, 81, 0.4);
}

.patio-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.patio-card-body {
  padding: 20px;
}

.patio-card-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.patio-card-city {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ─── HISTORY LAYOUT ─── */
.history-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* ─── PAGE HEADER ─── */
.page-header {
  display: block;
}

/* ─── EDIT PATIO ─── */
.edit-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
}

.edit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.edit-form-grid .full-width {
  grid-column: 1 / -1;
}

.status-radio-group {
  display: flex;
  justify-content: space-around;
  height: 100px;
  gap: 12px;
}
/*Boton para cambiar el estatus del patio*/
.status-radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  aspect-ratio: 1/1;
  padding: 14px;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.9s;
  text-align: center;
}

.status-radio:hover {
  border-color: var(--text-dim);
}

.status-radio.selected {
  border-radius: 50%;

  border-color: var(--radio-color);
  background: var(--radio-bg-color);
}
.status-radio.selected .icon-status {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.status-radio.selected .status-radio-label {
  transition: all 2s;
  display: none;
}
.status-radio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.status-radio-label {
  font-size: 14px;
  font-weight: 600;
}

/* ─── HISTORY ─── */
.history-section {
  width: 100%;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 20px 35px;
  position: relative;
}
.history-item::after {
  content: "";
  position: absolute;
  left: 52px;
  top: 80px;
  height: 100%;
  width: 2px;
  background: var(--line-color, rgba(0, 0, 0, 0.15));
  z-index: 0;
}
.history-item:last-child::after {
  display: none;
}
.history-dot {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.history-dot .icon-status {
  width: 100%;
  height: 100%;
}
.history-content {
  background: var(--bg-card);
  padding: 16px 20px;

  flex: 1;
}

.history-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.history-status {
  font-weight: 600;
  font-size: 14px;
}

.history-date {
  font-size: 13px;
  color: var(--text-dim);
}

.history-details {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.history-user {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ─── ADMIN USERS ─── */
.admin-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.admin-form-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.users-list-card,
.history-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.users-list-header,
.history-list-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.users-list-header span,
.history-list-header span {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}

.user-list-item {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.user-list-item:last-child {
  border-bottom: none;
}

.user-list-item:hover {
  background: var(--bg-hover);
}

.user-list-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-list-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.user-list-name {
  font-weight: 600;
  font-size: 14px;
}

.user-list-patio {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.user-list-email {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 1px;
}

.user-list-actions {
  display: flex;
  gap: 8px;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header {
    position: relative;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0 solid white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff4d3;
    padding: 5px;
  }
  .header-nav {
    position: absolute;
    top: 70px;
    right: 10px;
    width: 400px;
    flex-direction: column;
    align-content: center;
    justify-items: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: none;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255);
  }

  .header-nav.is-open {
    display: flex; /* abierto */
  }

  .header-nav .nav-btn,
  .header-nav .nav-btn-gold {
    width: 100%;
  }

  .main-content {
    padding: 24px 20px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-table-header,
  .dashboard-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .edit-form-grid {
    grid-template-columns: 1fr;
  }
  .history-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .user-badge {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .user-name,
  .user-role {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
