@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #131a2c;
  --bg-tertiary: #1e293b;
  --card-bg: rgba(20, 27, 45, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-primary: #3b82f6;      /* Blue */
  --accent-secondary: #8b5cf6;    /* Purple */
  --accent-glow: rgba(59, 130, 246, 0.15);
  --success: #10b981;             /* Emerald */
  --warning: #f59e0b;             /* Amber */
  --danger: #ef4444;              /* Rose */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --sidebar-width: 260px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* App Wrapper Layout */
#app-root {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Sidebar Styling */
.sidebar {
  width: var(--sidebar-width);
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--card-border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
  transition: var(--transition-smooth);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 2rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.menu-item button {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.menu-item button:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding-left: 1.25rem;
}

.menu-item.active button {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  color: var(--text-primary);
  border-left: 3px solid var(--accent-primary);
  padding-left: 0.85rem;
}

/* Main Content Area */
.main-wrapper {
  margin-left: var(--sidebar-width);
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Simulator / Control bar */
.top-bar {
  background: rgba(19, 26, 44, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

.simulator-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.role-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.role-select-dropdown, .lang-select {
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.role-select-dropdown:hover, .lang-select:hover {
  border-color: var(--accent-primary);
}

.lang-container {
  display: flex;
  gap: 0.25rem;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

/* Page Content Base */
.page-container {
  padding: 2rem;
  flex-grow: 1;
}

.page-header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.page-title {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  background: var(--bg-tertiary);
  border-color: var(--card-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
}

.btn-danger {
  background: var(--danger);
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

/* Glass Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.glass-card:hover::before {
  transform: translateX(100%);
}

.card-title {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.card-desc.success { color: var(--success); }
.card-desc.warning { color: var(--warning); }
.card-desc.danger { color: var(--danger); }

/* Filter Bar styles */
.filter-bar {
  background: rgba(19, 26, 44, 0.5);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.input-date, .select-input, .input-text {
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.input-date:focus, .select-input:focus, .input-text:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-glow);
}

.toggle-group {
  display: flex;
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  padding: 0.2rem;
}

.toggle-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toggle-btn.active {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Premium Table styles */
.table-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.premium-table th {
  background: rgba(15, 23, 42, 0.6);
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.premium-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-primary);
  vertical-align: middle;
}

.premium-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.premium-table tr:last-child td {
  border-bottom: none;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.badge-info { background: rgba(59, 130, 246, 0.15); color: var(--accent-primary); }

/* Roster & Scheduling CSS */
.scheduler-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.scheduler-day-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 0.75rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.scheduler-day-card.today {
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow);
}

.scheduler-day-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.scheduler-day-name {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.scheduler-day-assignments {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 180px;
}

.assignment-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.assignment-employee {
  font-weight: 600;
  color: var(--text-primary);
}

.assignment-team-badges {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.15rem;
}

.team-badge-primary {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 0 0.25rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

.team-badge-secondary {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  padding: 0 0.25rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

.leave-badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.25rem;
  border-radius: 2px;
  font-weight: 700;
  text-align: center;
  margin-top: 0.25rem;
}
.leave-OCS { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.leave-CL { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.leave-OD { background: rgba(94, 234, 212, 0.2); color: #2dd4bf; }
.leave-ML { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.leave-EL { background: rgba(251, 113, 133, 0.2); color: #fda4af; }

/* Kanban Board Layout */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.kanban-column {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  min-height: 500px;
}

.kanban-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.kanban-column-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
}

.kanban-column-count {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-weight: 600;
}

.kanban-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 400px;
}

.kanban-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kanban-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.kanban-card-title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.kanban-card-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* Profile Manager Layout */
.profile-grid-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.profile-sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  text-align: center;
  height: fit-content;
}

.profile-avatar-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-pseudo {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.profile-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  text-align: left;
}

.profile-detail-label {
  color: var(--text-secondary);
}

.profile-detail-value {
  font-weight: 500;
  word-break: break-all;
  max-width: 140px;
  text-align: right;
}

.profile-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Custom Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  padding: 0.6rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  min-height: 80px;
  resize: vertical;
  transition: var(--transition-smooth);
}

.form-textarea:focus {
  border-color: var(--accent-primary);
}

/* SVG Chart styles */
.svg-chart-container {
  width: 100%;
  height: 260px;
  position: relative;
}

.svg-chart-tooltip {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 0.5rem;
  pointer-events: none;
  font-size: 0.75rem;
  display: none;
  z-index: 10;
}

/* KPI Calendar Grid styling */
.kpi-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-top: 1rem;
}

.kpi-calendar-header-day {
  font-size: 0.7rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.kpi-calendar-day {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  min-height: 45px;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kpi-calendar-day.inactive {
  opacity: 0.2;
}

.kpi-calendar-day-num {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.kpi-calendar-day-status {
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
}

/* Tabs */
.tabs-container {
  display: flex;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
}

/* Alert Boxes */
.alert-box {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1.25rem;
  color: #93c5fd;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-box-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fcd34d;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .sidebar {
    width: 70px;
    padding: 1.5rem 0.5rem;
  }
  .logo-text, .menu-item span {
    display: none;
  }
  .main-wrapper {
    margin-left: 70px;
  }
  .profile-grid-container {
    grid-template-columns: 1fr;
  }
  .kanban-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .kanban-board {
    grid-template-columns: 1fr;
  }
  .scheduler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
