:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --bg-light: #ffffff;
    --bg-light-secondary: #f9fafb;
    --bg-light-tertiary: #f3f4f6;
    --text-light: #1f2937;
    --text-light-secondary: #6b7280;
    --border-light: #e5e7eb;
    
    --bg-dark: #1e293b;
    --bg-dark-secondary: #0f172a;
    --bg-dark-tertiary: #334155;
    --text-dark: #f1f5f9;
    --text-dark-secondary: #94a3b8;
    --border-dark: #334155;
    
    --console-height: 250px;

     --toast-success: #22c55e;
      --toast-error: #ef4444;
      --toast-info: #3b82f6;
      --toast-warning: #eab308;
      --toast-bg: #0f172a;
      --toast-text: #f8fafc;

    --primary-active: rgba(2, 82, 255, 0.5);
}

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

body {
    font-family: --apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    height: 100vh;
    /* overflow: hidden; */
    transition: background 0.3s, color 0.3s;
}

/* dark theme colors */
body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

/* header style */
.header {
    height: 56px;
    width:100%;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

body.dark .header {
    background: var(--bg-dark-secondary);
    border-bottom-color: var(--border-dark);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.425rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: var(--text-light);
}

body.dark .theme-toggle {
    color: var(--text-dark);
}

.theme-toggle:hover {
    background: var(--bg-light-tertiary);
}

body.dark .theme-toggle:hover {
    background: var(--bg-dark-tertiary);
}

.courses {
    padding: 0.3rem 0.6rem;
    background: var(--accent);
    color: var(--bg-light);
    border-radius: 0.375rem;
    font-weight: 500;
}

/* .courses:hover {
    background: var(--bg-light-tertiary);
} */

.body.dark .courses a{
    color: var(--text-dark);
}

/* body.dark .courses:hover {
    background: var(--bg-dark-tertiary);
} */


/* Main Container */
.main-container {
    display: flex;
    height: calc(100vh - 56px);
}

/* Sidebar */
.sidebar {
    width: 19%;
    background: var(--bg-light-secondary);
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
}


body.dark .sidebar {
    background: var(--bg-dark);
    border-right-color: var(--border-dark);
}

.sidebar-content {
    width: 100%;
    padding: 0.7rem;
}

.sidebar-section {
    margin-bottom: 1.5rem;
    /* overflow: hidden !important; */
}

.sidebar-title {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

body.dark .sidebar-title {
    color: var(--text-dark);
}

.course-item {
    margin-bottom: 0.5rem;
}

.course-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    transition: background 0.2s;
    font-weight: 500;
}

body.dark .course-button {
    color: var(--text-dark);
}

.course-button:hover {
    background: var(--bg-light-tertiary);
}

body.dark .course-button:hover {
    background: var(--bg-dark-tertiary);
}

.course-lessons {
    background: var(--bg-light-secondary);
    padding: 0.5rem 0;
}

body.dark .course-lessons {
    background: var(--bg-dark);
}

.lesson-button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-light-secondary);
    transition: all 0.2s;
}

body.dark .lesson-button {
    color: var(--text-dark-secondary);
}

.lesson-button:hover {
    background: var(--bg-light);
    color: var(--primary);
}

body.dark .lesson-button:hover {
    background: var(--bg-dark-secondary);
}

.workspace-actions {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.sidebar-explorer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 10px;
}

.btn-workspace {
    flex: 1;
    padding: 0.375rem 0.5rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--text-light);
    transition: all 0.15s;
    justify-content: center;
}

body.dark .btn-workspace {
    background: transparent;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

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

body.dark .btn-workspace:hover {
    background: var(--bg-dark-tertiary);
    border-color: var(--text-dark-secondary);
}

.btn-workspace svg {
    flex-shrink: 0;
}

.btn-workspace.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-weight: 500;
}

.btn-workspace.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

body.dark .btn-workspace.btn-primary {
    background: var(--primary);
    color: white;
}

body.dark .btn-workspace.btn-primary:hover {
    background: var(--primary-dark);
}

/* Search Box */
/* Sidebar Tabs */
.sidebar-tabs {
    display: flex;
    gap: 0rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light-secondary);
}

body.dark .sidebar-tabs {
    border-bottom-color: var(--border-dark);
    background: var(--bg-dark);
}

.sidebar-tab {
    flex: 1;
    padding: 0.625rem 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    color: var(--text-light-secondary);
    transition: all 0.15s;
    position: relative;
}

body.dark .sidebar-tab {
    color: var(--text-dark-secondary);
}

.sidebar-tab:hover {
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.05);
}

body.dark .sidebar-tab:hover {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--bg-light);
}

body.dark .sidebar-tab.active {
    background: var(--bg-dark-secondary);
}

.sidebar-view.hidden {
    display: none;
}


/* File Explorer */
.file-explorer {
    font-size: 0.8125rem;
    overflow: auto;
    /* background-color: red; */
}

.explorer-item {
    user-select: none;
}

.explorer-folder {
    margin-bottom: 0.125rem;
}

.folder-header {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.375rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.15s;
    color: var(--text-light);
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
}

body.dark .folder-header {
    color: var(--text-dark);
}

.folder-header:hover {
    background: var(--bg-light-tertiary);
}

body.dark .folder-header:hover {
    background: var(--bg-dark-tertiary);
}

.folder-chevron {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.folder-chevron.expanded {
    transform: rotate(90deg);
}

.folder-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.375rem;
    color: var(--primary);
    flex-shrink: 0;
}

.folder-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-actions {
    display: none;
    gap: 0.125rem;
    margin-left: 0.25rem;
}

.folder-header:hover .item-actions,
.file-item:hover .item-actions {
    display: flex;
}

.action-btn {
    padding: 0.125rem 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-secondary);
    transition: all 0.15s;
}

body.dark .action-btn {
    color: var(--text-dark-secondary);
}

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

body.dark .action-btn:hover {
    background: var(--bg-dark);
    color: var(--text-dark);
}

.action-btn.delete:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.folder-contents {
    padding-left: 1rem;
    display: none;
}

.folder-contents.expanded {
    display: block;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.375rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.15s;
    color: var(--text-light-secondary);
    padding-left: 1.5rem;
}

body.dark .file-item {
    color: var(--text-dark-secondary);
}

.file-item:hover {
    background: var(--bg-light-tertiary);
    color: var(--text-light);
}

body.dark .file-item:hover {
    background: var(--bg-dark-tertiary);
    color: var(--text-dark);
}

.explorer-item.active, .folder-header.active {
    background: var(--primary-active);
    border-radius: 0;
    border: 1px solid var(--primary);
    color: var(--bg-dark-secondary);
    font-weight: 500;
}

body.dark .file-item.active {
    background: var(--bg-dark-tertiary);
}

.file-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    flex-shrink: 0;
}

.file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-state {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-light-secondary);
    font-size: 0.8125rem;
    line-height: 1.5;
}

body.dark .empty-state {
    color: var(--text-dark-secondary);
}

/* Editor Area */
.editor-area {
    /* flex: 1; */
    width: calc(100% - 19%);
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

body.dark .editor-area {
    background: var(--bg-dark-secondary);
}

/* Editor Tabs */
.editor-tabs {
    width: 50%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background: var(--bg-light-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

body.dark .editor-tabs {
    background: var(--bg-dark);
    border-bottom-color: var(--border-dark);
}

.editor-tabs::-webkit-scrollbar {
    height: 4px;
}

.editor-tabs::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

body.dark .editor-tabs::-webkit-scrollbar-thumb {
    background: var(--border-dark);
}

.editor-tab {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-light);
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-light-secondary);
    transition: all 0.15s;
    white-space: nowrap;
    position: relative;
}

body.dark .editor-tab {
    border-right-color: var(--border-dark);
    color: var(--text-dark-secondary);
}

.editor-tab:hover {
    background: var(--bg-light-tertiary);
    color: var(--text-light);
}

body.dark .editor-tab:hover {
    background: var(--bg-dark-tertiary);
    color: var(--text-dark);
}

.editor-tab.active {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 500;
}

body.dark .editor-tab.active {
    background: var(--bg-dark-secondary);
    color: var(--text-dark);
    font-weight: 500;
}

.editor-tab .tab-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.editor-tab .tab-name {
    max-width: 120px;
    margin:0 !important;
    padding:0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.editor-tab .tab-close {
    width: 14px;
    height: 14px;
    padding: 2px;
    border-radius: 0.25rem;
    opacity: 0.6;
    transition: all 0.15s;
}

.editor-tab .tab-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

body.dark .editor-tab .tab-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.editor-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light-secondary);
}

body.dark .editor-controls {
    background: var(--bg-dark);
    border-bottom-color: var(--border-dark);
}

.file-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

body.dark .file-name {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.control-buttons {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.control-buttons .menu, .menu-close {
    padding: 0.1rem 0.51rem;
    padding-top:0.2rem;
    display: none;
    border-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

body.dark  .control-buttons .menu {
    /* background: var(--bg-dark-tertiary); */
    color: var(--text-dark);
}

.control-buttons .menu:hover, .menu-close:hover {
    transition: 0.3s;
    background: var(--bg-dark-tertiary);
    color: var(--text-dark);
}

.menu-close {
    cursor: pointer;
    position: absolute;
    right:0;
    display: none;
}

.control-buttons .action-buttons{
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-light-tertiary);
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
}

body.dark .btn-secondary:hover {
    background: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

body.dark .btn-outline {
    color: var(--text-dark);
    border-color: var(--border-dark);
}

.btn-outline:hover {
    background: var(--bg-light-tertiary);
}

body.dark .btn-outline:hover {
    background: var(--bg-dark-tertiary);
}

/* monaco editor's code */
.monaco-editor {
    flex: 1;
    height: calc(100vh - 56px - 57px - var(--console-height));
}


/* our output console */
.output-console {
    height: var(--console-height);
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
}

body.dark .output-console {
    border-top-color: var(--border-dark);
    background: var(--bg-dark-tertiary);
}

.console-header {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light-secondary);
}

body.dark .console-header {
    background: var(--bg-dark);
    border-bottom-color: var(--border-dark);
    background-color: var(--bg-dark);
    color: var(--text-dark);
}



.console-output {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 0.875rem;
    white-space: pre-wrap;
    color: var(--text-light);
}

body.dark .console-output {
    color: var(--text-dark);
}

.console-output .error {
    color: #dc2626;
}



/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

body.dark .modal-content {
    background: var(--bg-dark);
    /* color: var(--text-light); */
}

.modal-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

body.dark .modal-content h3 {
    color: var(--text-dark);
}

.input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    background: var(--bg-light);
    color: var(--text-light);
}

body.dark .input {
    background: var(--bg-dark-secondary);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.modal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.hidden {
    display: none;
}



/* Ad Placeholders */
.ad-placeholder {
    border: 2px dashed var(--border-light);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light-secondary);
    border-radius: 0.375rem;
}

body.dark .ad-placeholder {
    border-color: var(--border-dark);
    color: var(--text-dark-secondary);
}

.ad-header {
    display: none;
}

.ad-sidebar {
    margin-bottom: 1rem;
}

.ad-bottom {
    border-top: 1px solid var(--border-light);
    padding: 1rem;
    margin-top: auto;
}

body.dark .ad-bottom {
    border-top-color: var(--border-dark);
}


/* Toast container */
.toast-container {
    position: fixed;
    bottom: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Toast card */
.toast {
    position: fixed;
    bottom: 10px;
    right: 20px;
    min-width: 250px;
    max-width: 320px;
    padding: 12px 16px;
    border-radius: 10px;
    /* background: var(--toast-bg) !important; */
    color: var(--toast-text) !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px);
    opacity: 0;
    animation: toast-in 0.4s ease forwards, toast-out 0.4s ease forwards 4s;
}

.toast::before {
    content: "";
    width: 6px;
    height: 100%;
    border-radius: 6px;
    background: var(--toast-info) !important;
    display: block;
}

.toast.success { background: var(--toast-success) !important; }
.toast.error { background: var(--toast-error) !important; }
.toast.info { background: var(--toast-info) !important; }
.toast.warning { background: var(--toast-warning) !important; }

/* Close button */
.toast button {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--toast-text);
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.toast button:hover { opacity: 1; }

/* Animations */
@keyframes toast-in {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
    to { transform: translateY(-10px); opacity: 0; }
}




.badge-unsaved {
    color: #ffcc00;
    font-weight: bold;
    font-size: 25px !important;
    margin: 0px !important;
    margin-bottom:7px !important;
    /* margin-left: 6px; */
}

.fileExplorer {
    overflow-y: auto;
    overflow-x: auto
    /* height: calc(100vh - 56px - 57px); */
}


@media (max-width: 768px) {
    .menu-toggle {
        position: absolute;
        left: 0;
        /* top: 13vh; */
        height: 92vh;
        width: 50%;
        z-index: 1000;
        transition: transform 2s;
        transform: translateX(-100%);
    }

    .editor-area {
        width: 100%;
    }

    .nav_active {
        transform: translateX(0%);
    }

    .editor-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .editor-controls .editor-tabs {
        width: 100%;
        align-self: flex-start;
        order: 2;
        border-top: 1px solid var(--border-dark);
        margin-top: 0.2rem;
    }

    .editor-controls .control-buttons {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-content: center;
        margin-bottom: 0.2rem;
    }

    .menu-close {
        display: block;
    }

    .editor-controls .control-buttons .menu {
        align-self: center;
        display: block !important;
    }

   

}

@media (max-width: 480px) {
    .courses {
        font-size: 0.75rem;     
    }

    .editor-controls .control-buttons .action-buttons button {
        font-size:0.4rem !important;
    }

    .header-left .logo-text {
        font-size: 1.2rem;
    } 
}


@media (max-width: 320px) {
    .header-left .logo-text {
        font-size: 0.9rem;
    }

     .editor-controls .control-buttons .action-buttons button {
        font-size:0.4rem;
    }
}

@media (max-width: 1024px) {
    .editor-controls .control-buttons .action-buttons button {
        font-size:0.7rem;
    }

    .courses {
        font-size: 0.8rem;
    }
}

/* ---------- LIGHT THEME SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /*background */
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1; /* default thumb */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0; /* hover */
}

* {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f0f0f0; /* firefox */
}

/* ---------- DARK THEME SCROLLBAR ---------- */
.dark ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.dark ::-webkit-scrollbar-track {
  background: #1e1e1e; /* VS Code dark track */
}

.dark ::-webkit-scrollbar-thumb {
  background: #4d4d4d;  /* default thumb */
  border-radius: 10px;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #6c6c6c; /* hover */
}

.dark * {
  scrollbar-width: thin;
  scrollbar-color: #4d4d4d #1e1e1e; /* firefox */
}


   



