/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #151c2f;
    --bg-card: #1d263d;
    --text-primary: #f5f7fb;
    --text-secondary: #b6c2d9;
    --accent: #4f8cff;
    --accent-hover: #76a6ff;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #090d16 0%, #0b0f19 100%);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 100%;
    padding-inline: 1rem; /* Adds 1rem to the left and right */
    box-sizing: border-box; /* Ensures padding doesn't push width past 100% */
}

/* Top Bar */
/* Top Bar Base */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding-inline: 1rem;
}

/* Nav Container - LOCKED HORIZONTAL */
.nav-container {
    display: flex !important;
    flex-direction: row !important; /* ◄ CRITICAL: Overrides mobile-responsive vertical stacking utility rules */
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;             /* Slightly tighter padding for mobile balance */
    width: 100%;
}

/* Flex layout alignment helper for the Logo link wrapper */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;                     /* Nice spacing between image logo and text */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;         /* Removes underline if logo is a link */
}

/* Rules for the brand logo image styling */
.logo-img {
    height: 32px;                  /* Sets a clean constraint height */
    width: auto;                   /* Maintains crisp aspect ratio automatically */
    display: block;
    object-fit: contain;
}

/* Navigation Links layout alignment */
.nav-links {
    list-style: none;
    display: flex !important;
    flex-direction: row !important; /* ◄ CRITICAL: Ensures link icons never wrap vertically either */
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero */
.hero {
    padding: 7rem 0 5rem;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(79, 140, 255, 0.18), transparent 50%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01));
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Tools Section */
.tools-section {
    padding: 4rem 0 5rem;
}

.tools-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0% 10%;
    margin-bottom: 2rem;
}

.tool-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 140, 255, 0.4);
}

.tool-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 1.5rem 0;
    color: var(--text-secondary);
}


/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}



/* Login Page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: min(400px, 100%);
    box-shadow: var(--shadow);
    text-align: center;
}

.login-card h2 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.login-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.login-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: var(--accent-hover);
}
.form-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-check a {
    color: var(--accent);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.login-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}


/* Register Page */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.register-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: min(450px, 100%);
    box-shadow: var(--shadow);
    text-align: center;
}

.register-card h2 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.register-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.register-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-links a:hover {
    color: var(--accent-hover);
}

/* Terms Page */
.terms-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 3rem 0;
}

.terms-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: min(800px, 100%);
    box-shadow: var(--shadow);
    color: var(--text-secondary);
}

.terms-card h2 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

.terms-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.terms-card p, .terms-card ul {
    margin-bottom: 1rem;
}

.terms-card ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.terms-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.terms-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-links a:hover {
    color: var(--accent-hover);
}

/* Dashboard Layout */
.dashboard {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Left Menu */
.leftmenu {
    flex: 1;
    max-width: 250px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.leftmenu h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
    text-decoration: underline;
}

/* Accordion */
.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-header {
    display:inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.6rem;
    border: none;
    border-radius: 8px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    vertical-align: middle;
}

.accordion-header:hover {
    background: var(--accent);
}

.accordion-content {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.accordion-content.active {
    display: flex;
}

.accordion-content a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.accordion-content a:hover {
    color: var(--accent-hover);
}
@media (max-width: 767px) {
    .leftmenu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        max-width: 280px;
        width: 85%;
        border-radius: 0; /* Full height looks better squared off on mobile */
        z-index: 9999;     /* Make sure it floats on top of the main area */
        
        /* Slide it completely out of view to the left by default */
        transform: translateX(-100%);
        visibility: hidden; 
    }

    /* When JavaScript adds the .active class, slide it into view */
    .leftmenu.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5); /* Deep shadow over content */
    }
}
/* Hide menu button on desktop by default */
/* Update your mobile menu button properties */
.mobile-menu-btn {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: #ffffff; 
    cursor: pointer;
    padding: 8px;
    
    /* ◄ CRITICAL COMPACTNESS FIXES: */
    width: 40px;          /* Hard limit on width */
    height: 40px;         /* Hard limit on height */
    flex-shrink: 0;       /* Tells flexbox: "Do NOT stretch or squash me" */
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
/* Main Area */
.main-area {
    flex: 3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
    min-width: 0;
}

.main-area h2 {
    margin-bottom: 1rem;
    color: var(--accent);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .dashboard {
        flex-direction: column;
    }

    .leftmenu {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .main-area {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .accordion-header {
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    .main-area {
        padding: 1.2rem;
    }

    .main-area h2 {
        font-size: 1.2rem;
    }
}

.login-msg {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.register-msg {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

/* Verify Code Page */
.verify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.verify-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: min(400px, 100%);
    box-shadow: var(--shadow);
    text-align: center;
}

.verify-card h2 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    
}

.code-box {
    width: 5rem;
    height: 2.5rem;
    text-align: center;
    font-size: 1.4rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.code-box:focus {
    outline: none;
    border-color: var(--accent);
}

.verify-msg {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    color: red;
    margin-bottom: 1rem;
}

.verify-links {
    margin-top: 1.5rem;
}
.verify-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.verify-links a:hover {
    color: var(--accent-hover);
}

/* Base Form Styles */
form {
  background: var(--bg-card, #1d263d);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,0.35));
  color: var(--text-primary, #f5f7fb);
  max-width: 600px;
  margin: 0 auto;
}
form h2 {
  margin-bottom: 1.5rem;
  color: var(--accent, #4f8cff);
  text-align: center;
}
form p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary, #b6c2d9);
  text-align: center;
}
/* Labels */
label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-secondary, #b6c2d9);
  font-size: 0.95rem;
}

/* Inputs, Textareas, Selects */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  background: var(--bg-secondary, #151c2f);
  color: var(--text-primary, #f5f7fb);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
input[type="date"] {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  background: var(--bg-secondary, #151c2f);
  color: var(--text-primary, #f5f7fb);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;

  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent, #4f8cff);
}

/* Checkboxes & Radios */
input[type="checkbox"],
input[type="radio"] {
  margin-right: 0.5rem;
  accent-color: var(--accent, #4f8cff);
}

.form-check,
.form-radio {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary, #b6c2d9);
}

.form-check label,
.form-radio label {
  margin: 0;
  cursor: pointer;
}

.form-check a,
.form-radio a {
  color: var(--accent, #4f8cff);
  text-decoration: none;
}

.form-check a:hover,
.form-radio a:hover {
  text-decoration: underline;
}

/* Buttons */
button,
.btn-primary {
  display: inline-block;
  background: var(--accent, #4f8cff);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,0.35));
  transition: transform 0.2s ease, background 0.3s ease;
}

button:hover,
.btn-primary:hover {
  background: var(--accent-hover, #76a6ff);
  transform: translateY(-2px);
}

/* Message Box */
.form-msg {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.form-msg.success {
  color: lightgreen;
}

.form-msg.error {
  color: red;
}

/* Responsive */
@media (max-width: 600px) {
  form {
    padding: 1.2rem;
  }
  button,
  .btn-primary {
    width: 100%;
  }
}
#working_area.loading::before {
  content: "Loading...";
  display: block;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
  width:100%;
  min-width:0;
}

.card-link {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Forces text to keep its original dashboard colors */
    display: block;        /* Ensures the link fills the entire width/height of the card */
}

/* User Profile Box Wrapper */
.user-profile-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0.25rem 0.75rem 0.25rem;
    background: rgba(255, 255, 255, 0.03); /* Subtle backdrop tint */
    border-radius: 8px;
    
}

/* Avatar Circle */
.user-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: auto;
}

/* Layout container for info next to avatar */
.user-profile-section .user-info-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    
}

/* Metadata Text Alignment */
.user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevents long emails from breaking container bounds */
    text-align: center;
}

.user-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    white-space: nowrap;
    overflow: ellipsis;
}

.user-email {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary, #8a92a6);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Button Group Grid for Profile & Password Changes */
.user-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.btn-user-action {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-user-action:hover {
    color: var(--text-primary, #ffffff);
    background: var(--border);
    border-color: var(--accent);
}

/* Structural Menu Separator rule line */
.menu-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1rem 0;
    opacity: 0.5;
}
.usual_link{
    /*remove formating of link*/
    text-decoration: none;
    color: black;
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    cursor:pointer;
}
.usual_link:hover{
    color:white;
    background-color: black;
    text-decoration: none;
    cursor: pointer;
}

.divSpace{
    display: block;
    width: 100%;
    object-fit:cover;
  }
.divSpace img{
    display: block;
    width: 100%;
    object-fit:cover
}

.main-area .top-menu{
    display: flex;
    width: 100%;    
    margin-bottom: 50px;
    background-color: var(--bg-secondary);
    color: var(--accent);
}
.top-menu a {
    text-decoration: none;
    display:block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    align-items: center;
    background-color: var(--bg-secondary);
    color: var(--accent);
    border: 1px solid var(--accent);
    font-weight: bold;
    cursor: pointer;
}
.top-menu a:hover{
    background-color: var(--accent);
    color: var(--text-primary);
    border-color: var(--text-primary);
}



/* Responsive scroll wrapper */
.table-wrapper {
  width: 100%;                     /* Wrapper takes up exactly 100% of its parent */
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  padding:5px;                  /* Ensures wrapper acts as a block-level container */
}

/* Dark mode table */
.table-dark {
  border-collapse: collapse;
  background-color: #0b0f19;
  color: #ffffff;
  font-family: sans-serif;

  table-layout: fixed;             /* Respects explicit column widths */
  width: max-content;              /* Allows the table to stretch as wide as your columns dictate */
  
  /* REMOVED: max-width: 100%;     <-- This was capping or breaking the overflow logic */
}

/* Header cells */
.table-dark th {
  background-color: #161c2a;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #242f47;
  white-space: nowrap;             /* Prevents headers from wrapping awkwardly */
}

/* Body cells */
.table-dark td {
  padding: 12px 16px;
  border-bottom: 1px solid #2a344d;
  vertical-align: top;
  word-break: break-word;          /* Allows text to wrap within your fixed column widths */
}

/* Zebra striping */
.table-dark tbody tr:nth-child(even) {
  background-color: #111624;
}

/* Hover effect */
.table-dark tbody tr:hover {
  background-color: #1c2436;
}






.search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Puts a nice space between the icon and the text */
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    background-color:var(--accent-hover); /* Darkens slightly on hover */
}

/* Helper to align icons perfectly inside buttons or links */
.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Spacing between icon and text */
    text-decoration: none;
    vertical-align: middle;
}

/* Adjust icon size if needed (Default is 24px) */
.material-icons {
    font-size: 10px; 
}


/* Bottom Bar Base layout container */
.bottom-bar {
    background-color: #0b0f19; /* Matches your top-bar background color */
    border-top: 1px solid var(--border);
    padding-inline: 1rem;
    margin-top: auto;          /* If using a flex column layout, this forces footer to stay at bottom */
    width: 100%;
}

/* Container limits width and handles layout distribution */
.footer-container {
    display: flex;
    flex-wrap: wrap;           /* Allows links to wrap gracefully on very narrow mobile screens */
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
}

/* Fine-print text string */
.footer-copyright {
    color: var(--text-secondary);
    font-family: sans-serif;
    font-size: 0.85rem;
    margin: 0;
}

/* Unordered link structural layout alignment */
.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;           /* Prevents string breakage on mobile viewports */
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Individual list layout string typography rules */
.footer-links a {
    color: var(--text-secondary);
    font-family: sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Interactive hover color response updates */
.footer-links a:hover {
    color: var(--accent, #4da6ff); /* Shifting focus highlights your color configuration variables */
}

/* Mobile responsive alignment */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column-reverse; /* Puts copyright text cleanly under navigation links on small screens */
        text-align: center;
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem 1.25rem;            /* Tighter gap formatting profile adjustment for mobile */
    }
}