/**
 * Ketisatahan Education Platform
 * Mobile-First Responsive CSS
 * Priority: Mobile > Tablet > Desktop
 */

/* =============================================
   CSS VARIABLES & THEME
============================================= */
:root {
    /* Color Palette - Modern Blue/Teal Theme */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #14b8a6;
    --secondary-dark: #0d9488;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0ea5e9 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    /* Neutrals */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;

    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-light: #ffffff;

    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: 1.875rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

/* =============================================
   CONTAINER
============================================= */
.container {
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    margin: 0 auto;
}

/* =============================================
   NAVIGATION - MOBILE FIRST
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-sm) 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.navbar-brand img {
    width: 36px;
    height: 36px;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: var(--space-lg);
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
}

.navbar-menu.active {
    transform: translateX(0);
}

.navbar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-link {
    display: block;
    padding: var(--space-md);
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-secondary);
    color: var(--primary);
}

.navbar-actions {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    min-height: 44px;
    /* Touch-friendly */
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-donate {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: white;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
    color: white;
}

/* =============================================
   AD CONTAINERS
============================================= */
.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ad-header {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
}

.ad-content-top,
.ad-content-bottom {
    padding: var(--space-md);
    margin: var(--space-md) auto;
    max-width: 728px;
}

.ad-footer {
    padding: var(--space-md);
    background: var(--bg-secondary);
}

.ad-sidebar {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

/* =============================================
   CARDS
============================================= */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.card-body {
    padding: var(--space-md);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    padding: 5rem var(--space-md) 3rem;
    background: var(--gradient-hero);
    color: var(--text-light);
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-box input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    outline: none;
    font-size: 1rem;
    min-height: 52px;
}

.search-box button {
    padding: var(--space-md) var(--space-lg);
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

/* =============================================
   GRADE CARDS GRID
============================================= */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
}

.grade-card {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.grade-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.grade-card h3 {
    color: white;
    font-size: 1.25rem;
}

.grade-card span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* =============================================
   CONTENT SECTIONS
============================================= */
.section {
    padding: var(--space-xl) var(--space-md);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.section-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

/* =============================================
   FILTER BAR
============================================= */
.filter-bar {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
}

.filter-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-select,
.filter-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--bg-secondary);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    font-size: 0.875rem;
    min-height: 44px;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* =============================================
   FORMS
============================================= */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1rem;
    min-height: 48px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* =============================================
   STAR RATING
============================================= */
.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-star.empty {
    color: var(--bg-secondary);
}

.rating-count {
    margin-left: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =============================================
   ALERTS
============================================= */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

/* =============================================
   AUTH PAGES
============================================= */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--gradient-hero);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.auth-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* =============================================
   BOTTOM NAVIGATION (MOBILE)
============================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: var(--space-sm) 0;
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.625rem;
    text-decoration: none;
    min-width: 60px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

/* =============================================
   ADMIN LAYOUT
============================================= */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: var(--bg-dark);
    color: white;
    padding: var(--space-lg);
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 1001;
    overflow-y: auto;
}

.admin-sidebar.active {
    transform: translateX(0);
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.admin-nav {
    list-style: none;
}

.admin-nav-item {
    margin-bottom: var(--space-xs);
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-content {
    flex: 1;
    padding: var(--space-lg);
    padding-top: calc(56px + var(--space-lg));
    padding-bottom: calc(60px + var(--space-lg));
}

.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Data Table */
.data-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.data-table th,
.data-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--bg-secondary);
}

.data-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================
   TABLET BREAKPOINT (min-width: 640px)
============================================= */
@media (min-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        max-width: 640px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .grade-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filter-select,
    .filter-input {
        width: auto;
        flex: 1;
        min-width: 150px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   DESKTOP BREAKPOINT (min-width: 1024px)
============================================= */
@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .container {
        max-width: 1024px;
    }

    /* Desktop Navigation */
    .navbar-toggle {
        display: none;
    }

    .navbar-menu {
        position: static;
        transform: none;
        padding: 0;
        background: transparent;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav {
        flex-direction: row;
        gap: var(--space-xs);
    }

    .nav-link {
        padding: var(--space-sm) var(--space-md);
    }

    .navbar-actions {
        margin: 0;
        padding: 0;
        border: none;
        flex-direction: row;
    }

    /* Hide bottom nav on desktop */
    .bottom-nav {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 8rem var(--space-xl) 5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    /* Grids */
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Admin sidebar always visible */
    .admin-sidebar {
        position: fixed;
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 260px;
        padding-bottom: var(--space-lg);
    }

    .admin-header {
        left: 260px;
    }

    .admin-toggle {
        display: none;
    }
}

/* =============================================
   LARGE DESKTOP (min-width: 1280px)
============================================= */
@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* =============================================
   UTILITIES
============================================= */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-danger {
    color: var(--danger);
}

.bg-primary {
    background: var(--primary);
}

.bg-light {
    background: var(--bg-secondary);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mt-4 {
    margin-top: var(--space-xl);
}

.p-2 {
    padding: var(--space-md);
}

.p-3 {
    padding: var(--space-lg);
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: var(--space-sm);
}

.gap-2 {
    gap: var(--space-md);
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Badge variants */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, #e2e8f0 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

/* Page padding for fixed bottom nav */
body {
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

/* Page padding for fixed top nav */
.main-content {
    padding-top: 56px;
}

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  content_css: 'writer'
});