.node path {
    fill: rgb(64, 64, 64);
    stroke: rgb(109, 109, 109);
    stroke-width: 5px;
}
.highlight {
    background-color: yellow;
}
.codicon
{
    width: 100%; /* Take up the full width */
    background-color: white; 
}
.monaco-editor .margin-view-overlays .cldr{
    position: absolute;
    height:1px;
    top:50%;
}
.view-lines{
    font-size: '20px';
}
#resultsPane {
    height:300px;
    overflow-x: hidden;
    overflow-y: hidden;
}
.node rect {
    fill: rgb(64, 64, 64);
    stroke: rgb(109, 109, 109);
    stroke-width: 3px;
}

text {
    font-family: Roboto, sans-serif;
}

.node text {
    font-size: 14px;
}

    .link path {
    fill: none;
    /* stroke: #ccc;
    stroke-width: 2px; */
} 

::-webkit-scrollbar {
    width: 3em;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(109, 109, 109);
}
::-webkit-scrollbar {
    width: 15px;
    height:15px
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background: rgb(64, 64, 64);
}

#leftPane {
    background: #393e3f;
    overflow-x: hidden;
    overflow-y: hidden;
}

#rightPane {
    overflow-x: hidden;
    overflow-y: hidden;
}

.privacyLink
{
    display:flex;
    align-items:center;
    justify-content: center;
    font-size: 10px;
}

.privacyLink a{
    color:#fff;
    padding-top:10px;
    font-weight: bold;
    font-size: 10px;
}
.footer
{
    position:fixed;
    bottom:0;
    width:100%;
    height:40px;   /* Height of the footer */
    background:black;
    color: white;
    z-index: 999;
}
.highlightEditor {
    background: rgb(109, 109, 109);
    width: 5px !important;
    left: 3px;
}

.errorforstyle
{
    background-color: #eb3b3b;
}

.testHighlight {
    background: rgb(167, 21, 21);
    width: 5px !important;
    left: 3px;
}
/* Add this CSS to your main stylesheet or create a separate stylesheet */

/* Container styling */
.data-grid-container {
    font-family: Arial, sans-serif;
    margin: 20px;
    overflow-y: auto;
    overflow-x: auto;
  }
  
  /* Table styling */
  .data-grid {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  /* Close button styles */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  /* CSS for code folding markers */
.monaco-editor .fold-marker {
    visibility: visible !important;
    height:20px;
    /* Add custom styling as needed */
  }
  
  .close-btn:hover {
    color: red;
  }

  .data-grid table {
    width: 100%;
  }
  
  .data-grid th,
  .data-grid td {
    padding: 12px;
    text-align: left;
  }
  
  /* Header row */
  .data-grid th {
    background-color: #f2f2f2;
    border-bottom: 2px solid #ddd;
  }
  
  /* Alternating row colors */
  .data-grid tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  /* Hover effect on rows */
  .data-grid tbody tr:hover {
    background-color: #e0e0e0;
  }

p {
    font-family: Roboto, sans-serif;
    color: white;
}

#header p {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-left: 1px;
}

#header img {}

#container {
    height: "100%";
    overflow: "hidden"
}

.tooltip {
    font-family: Roboto, sans-serif;
    color: black;
    font-size: 14px;
    font-weight: bold;
    background-color: yellow;
    padding:5px;
    border: 1px solid black;
}

input[type="file"] {
    display: none;
}

.header-button {
    margin-left: 5px;
    border: 1px solid white;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    color: white;
    font-weight: bold;
}

label {
    font-family: Roboto, sans-serif;
    color: white;
}

.overlay-style {
    opacity:0.8;
    background-color:#696969;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:1000;
} 

.overlay-text {
    color: #fff;
    position:absolute;
    top:42%;
    left:37%;
    font-size:150px;
    font-family:Arial;
}

.error-style {
    position:fixed;
    top:10px;
    right:50%;
    z-index:10000;
    white-space: pre-line;
}

/* DiffEditor container styling */
.diff-editor-container {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  display: block;
  min-width: 300px;
  border: none;
  background-color: #1e1e1e;
  overflow: hidden;
}

/* Monaco editor wrapper */
.diff-editor-container .monaco-editor {
  width: 100% !important;
  height: 100% !important;
}

/* Line numbers styling */
.monaco-editor .line-numbers {
  color: #858585 !important;
  font-size: 14px !important;
}

/* Active line number styling */
.monaco-editor .current-line ~ .line-numbers {
  color: #c6c6c6 !important;
}

/* Custom scrollbar styles for Monaco */
.monaco-scrollable-element > .scrollbar {
  background: #333333 !important;
}

.monaco-scrollable-element > .scrollbar > .slider {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 6px !important;
}

.monaco-scrollable-element > .scrollbar:hover > .slider {
  background: rgba(240, 240, 240, 1) !important;
}

.monaco-scrollable-element > .scrollbar > .slider:active {
  background: rgba(200, 200, 200, 1) !important;
}

.monaco-scrollable-element > .scrollbar.vertical {
  width: 14px !important;
}

.monaco-scrollable-element > .scrollbar.horizontal {
  height: 10px !important;
}

/* Monaco hover widgets */
.monaco-editor .overflowingContentWidgets {
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: 1000;
}

.monaco-editor .overflowingContentWidgets > * {
  pointer-events: auto !important;
}

.monaco-editor .overflowingContentWidgets .monaco-hover {
  position: fixed !important;
  z-index: 100000 !important;
  max-width: 600px !important;
}

.monaco-editor .monaco-hover,
.monaco-hover {
  position: fixed !important;
  z-index: 100000 !important;
}

/* Dialog overflow prevention */
body.MuiDialog-scrollLock {
  overflow: hidden !important;
}

.MuiDialog-container,
.MuiDialog-paper,
.MuiDialogContent-root {
  overflow: hidden !important;
}
