
.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 {
  height: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  border: 1px solid #e1e4e8;
  background-color: #ffffff;
  overflow: hidden;
}

/* Custom scrollbar styles for DiffEditor */
#rightPane2 *::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

#rightPane2 *::-webkit-scrollbar-track {
  background: #333333;
  border-radius: 8px;
}

#rightPane2 *::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 8px;
  min-height: 40px;
}

#rightPane2 *::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
}

#rightPane2 *::-webkit-scrollbar-corner {
  background: #333333;
}

/* Monaco editor specific scrollbar styling */
#rightPane2 .monaco-scrollable-element .scrollbar {
  background: rgba(51, 51, 51, 1) !important;
  opacity: 1 !important;
}

#rightPane2 .monaco-scrollable-element .slider {
  background: rgba(255, 255, 255, 1) !important;
  border-radius: 6px !important;
  opacity: 1 !important;
  min-height: 50px !important;
}

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

/* Force Monaco scrollbars to always be visible */
#rightPane2 .monaco-scrollable-element > .scrollbar {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Remove only the minimap and overview ruler for cleaner look */
#rightPane2 .monaco-editor .minimap {
  display: none !important;
}

#rightPane2 .monaco-editor .decorationsOverviewRuler {
  display: none !important;
}

/* Fix horizontal scrollbar width to match content proportionally */
#rightPane2 .monaco-scrollable-element.horizontal .slider {
  min-width: 20px !important;
}

/* Ensure proper content width calculation */
#rightPane2 .monaco-editor .view-lines {
  min-width: max-content !important;
}
