/*
Theme Name: JVR Jobs Theme
Description: A professional, mobile-first WordPress theme designed for JVR Jobs, South Africa's premier jobs portal. Features Bootstrap 5, Google Icons, and South African branding.
Author: JVR Jobs Development Team
Version: 1.0.0
Text Domain: jvr-jobs
Domain Path: /languages
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

JVR Jobs WordPress Theme
A mobile-first jobs portal theme for South Africa
*/

/* Base Styles with South African Color Palette */
:root {
    /* South African flag-inspired palette */
    --primary: #005A9C; /* Blue from SA flag but slightly more usable */
    --primary-dark: #004B8D;
    --secondary: #6c757d;
    --success: #007A4D; /* Green from SA flag */
    --info: #0dcaf0;
    --warning: #FFB81C; /* Gold/yellow from SA flag */
    --danger: #E03C31; /* Red from SA flag */
    --light: #f8f9fa;
    --dark: #212529;
    
    /* Additional SA colors */
    --sa-blue: #001489;
    --sa-red: #E03C31;
    --sa-yellow: #FFB81C;
    --sa-green: #007A4D;
    --sa-black: #000000;
    --sa-white: #FFFFFF;
    
    /* JVR Jobs brand colors */
    --jvr-primary: #005A9C;
    --jvr-secondary: #007A4D;
    --jvr-accent: #FFB81C;
    
    /* Typography */
    --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-headings: 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: 60px 0;
    --container-max-width: 1200px;
    
    /* Border radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
.py-5 { padding: 3rem 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-success {
    background-color: var(--success);
    color: white;
    border: 2px solid var(--success);
}

.btn-success:hover {
    background-color: #006341;
    border-color: #006341;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Apply Button - Special styling for job apply buttons */
.btn-apply {
    background: linear-gradient(135deg, var(--success) 0%, #006341 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 122, 77, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 77, 0.4);
    color: white;
    text-decoration: none;
}

.btn-apply:active {
    transform: translateY(-1px);
}

/* Card Components */
.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.card-header {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Job Card Specific Styles */
.job-card {
    border-left: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}

.job-card.featured {
    border-left-color: var(--warning);
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.job-card.remote {
    border-left-color: var(--success);
    background: linear-gradient(135deg, rgba(0, 122, 77, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-title a {
    color: var(--dark);
    text-decoration: none;
}

.job-title a:hover {
    color: var(--primary);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

.job-meta-item i {
    color: var(--primary);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.badge-primary {
    background-color: var(--primary);
    color: white;
}

.badge-success {
    background-color: var(--success);
    color: white;
}

.badge-warning {
    background-color: var(--warning);
    color: var(--dark);
}

.badge-light {
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid #dee2e6;
}

/* South African Theme Elements */
.sa-accent-bar {
    width: 6px;
    height: 40px;
    background: linear-gradient(to bottom, 
        var(--sa-blue) 0%, 
        var(--sa-green) 33.3%, 
        var(--sa-yellow) 66.6%, 
        var(--sa-red) 100%);
    border-radius: 4px;
}

.sa-flag-accent {
    position: relative;
}

.sa-flag-accent:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        var(--sa-blue) 25%, 
        var(--sa-green) 25%, 50%, 
        var(--sa-yellow) 50%, 75%, 
        var(--sa-red) 75%);
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    max-width: 100%;
}

.site-logo {
    max-height: 50px;
    width: auto;
    max-width: 100%;
}

.site-logo img,
.custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.custom-logo-link {
    display: inline-block;
    max-width: 100%;
    line-height: 1;
    vertical-align: middle;
}

/* Text branding for when no logo is set */
.text-branding {
    max-width: 100%;
}

.text-branding .site-title a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.text-branding .site-title a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Header responsive adjustments */
.site-header .row {
    min-height: 70px;
}

@media (min-width: 992px) {
    .site-logo img,
    .custom-logo {
        max-height: 55px;
    }
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.site-description {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
}

/* Navigation Styles */
.main-navigation {
    background-color: var(--primary);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-navigation .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation .navbar-nav .nav-link:hover,
.main-navigation .navbar-nav .nav-link:focus {
    color: var(--warning);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.main-navigation .navbar-nav .nav-link.active {
    color: var(--warning);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Dropdown Menu Styles */
.main-navigation .dropdown-menu {
    background-color: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    margin-top: 0;
    min-width: 220px;
}

.main-navigation .dropdown-item {
    color: var(--dark);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-navigation .dropdown-item:last-child {
    border-bottom: none;
}

.main-navigation .dropdown-item:hover,
.main-navigation .dropdown-item:focus {
    color: var(--primary);
    background-color: rgba(0, 90, 156, 0.1);
}

.main-navigation .dropdown-item i {
    color: var(--primary);
    width: 18px;
}

.main-navigation .dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Dropdown Toggle Arrow */
.main-navigation .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.main-navigation .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown Animation */
.main-navigation .dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.main-navigation .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Navigation Dropdown Styles */
.mobile-nav-wrapper {
    background-color: rgba(0, 90, 156, 0.05);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--primary);
    background-color: rgba(0, 90, 156, 0.1);
    text-decoration: none;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-menu-item.has-submenu > .mobile-nav-link {
    position: relative;
}

.mobile-menu-item.has-submenu > .mobile-nav-link i {
    transition: transform 0.3s ease;
}

.mobile-menu-item.has-submenu > .mobile-nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu {
    background-color: rgba(0, 90, 156, 0.02);
    border-left: 3px solid var(--primary);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-submenu .mobile-nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-submenu .mobile-nav-link:hover {
    background-color: rgba(0, 90, 156, 0.05);
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design - Mobile Menu Styles */
@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .mobile-menu-toggle.active {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .mobile-menu-toggle i {
        transition: transform 0.3s ease;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle.active i {
        transform: rotate(180deg);
    }
    
    #mobile-menu {
        background-color: white;
        border-top: 1px solid var(--bs-border-color);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
        z-index: 1000;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        opacity: 0;
    }
    
    #mobile-menu.show {
        max-height: 100vh;
        opacity: 1;
    }
    
    #mobile-menu.collapsing {
        transition: max-height 0.35s ease, opacity 0.3s ease;
    }
    
    .mobile-nav-wrapper {
        padding: 1rem 0;
    }
    
    .mobile-nav-list {
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        border-bottom: 1px solid var(--bs-border-color);
    }
    
    .mobile-nav-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-list a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--bs-dark);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-nav-list a:hover,
    .mobile-nav-list a:focus {
        background-color: var(--bs-light);
        color: var(--primary);
        padding-left: 2rem;
    }
    
    .mobile-nav-list a:active {
        background-color: var(--primary);
        color: white;
    }
    
    .mobile-nav-list .dropdown-toggle {
        position: relative;
    }
    
    .mobile-nav-list .dropdown-toggle::after {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .mobile-nav-list .dropdown-toggle[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .mobile-submenu {
        background-color: var(--bs-light);
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-submenu.show {
        max-height: 500px;
    }
    
    .mobile-submenu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        color: var(--bs-secondary);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-submenu a:hover {
        color: var(--primary);
        background-color: white;
        padding-left: 2rem;
    }
    
    .mobile-submenu a:last-child {
        border-bottom: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Smooth animations for mobile menu items */
    .mobile-nav-list li {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInFromLeft 0.3s ease forwards;
    }
    
    .mobile-nav-list li:nth-child(1) { animation-delay: 0.05s; }
    .mobile-nav-list li:nth-child(2) { animation-delay: 0.1s; }
    .mobile-nav-list li:nth-child(3) { animation-delay: 0.15s; }
    .mobile-nav-list li:nth-child(4) { animation-delay: 0.2s; }
    .mobile-nav-list li:nth-child(5) { animation-delay: 0.25s; }
    
    @keyframes slideInFromLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* New Job Ribbons */
.new-ribbon {
    position: absolute;
    top: 15px;
    right: -8px;
    z-index: 10;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulseGlow 2s infinite;
}

.new-ribbon::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.new-ribbon.very-new {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
}

.new-ribbon.very-new::after {
    border-left: 8px solid #ff3742;
}

.new-ribbon.new {
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
    color: white;
}

.new-ribbon.new::after {
    border-left: 8px solid #1dd1a1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
}

/* New Jobs Page Styles */
.job-card-new {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.job-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.job-card-new .job-title a:hover {
    color: var(--primary) !important;
}

.job-time {
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 20px;
    padding: 8px 12px;
    display: inline-block;
}

.filters-section .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.filters-section .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.view-options .btn {
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
}

.view-options .btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Job counter animation */
.jobs-counter h2 {
    animation: countUp 0.5s ease-out;
}

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

/* List view adjustments */
.job-item.col-12 .job-card-new {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.job-item.col-12 .job-card-new .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.job-item.col-12 .job-card-new .job-actions {
    flex-shrink: 0;
    margin-left: 2rem;
}

.job-item.col-12 .job-card-new .job-actions .btn {
    min-width: 120px;
}

/* Mobile responsive for new jobs */
@media (max-width: 768px) {
    .new-ribbon {
        top: 10px;
        right: -5px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .new-ribbon::after {
        right: -5px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    
    .new-ribbon.very-new::after {
        border-left: 5px solid #ff3742;
    }
    
    .new-ribbon.new::after {
        border-left: 5px solid #1dd1a1;
    }
    
    .job-item.col-12 .job-card-new {
        flex-direction: column;
    }
    
    .job-item.col-12 .job-card-new .card-body {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-item.col-12 .job-card-new .job-actions {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .filters-section .row > div {
        margin-bottom: 1rem;
    }
}

/* Enhanced job card animations */
.job-card-new {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.job-card-new:nth-child(1) { animation-delay: 0.1s; }
.job-card-new:nth-child(2) { animation-delay: 0.2s; }
.job-card-new:nth-child(3) { animation-delay: 0.3s; }
.job-card-new:nth-child(4) { animation-delay: 0.4s; }
.job-card-new:nth-child(5) { animation-delay: 0.5s; }
.job-card-new:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .btn:not(.btn-apply) {
        width: auto;
    }
    
    .job-meta {
        flex-direction: row;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .job-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
