* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Arial, sans-serif; */
}

/* body {
 margin: 0; 
  font-family:  'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
} */


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
  'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
  'Open Sans', 'Helvetica Neue', sans-serif;
  /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
    /* font-family: 'inter', sans-serif; */
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #222;
    /* background-color: #f8f9fb; */
      background-color: #f9fafb;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


p {
    margin-bottom: 16px;
}

ul {
  margin: 16px 0 16px 20px;
  line-height: 1.7;
}



.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #282a35;
  display: flex;
  width: 100%;
  height: 50px;
  overflow: hidden;
  white-space: nowrap;
  align-items: center;
}

.top-nav a {
  color: #f1f1f1;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 15px;
  flex: 0 0 auto;
  /* display: inline-block; */
}

.top-nav a:hover {
  background-color: #000;
}

.top-nav a.active {
  background-color:#4f46e5;
  /* background-color:#4f46e5;   */
  /* color: white; */
}

.links{
  display: flex;
  margin: 0 auto;
}

.links a{
  margin: 0 10px;   /* links ke darmiyan gap */
}


.logo{
   padding: 0 10px !important;
  display: flex;
  align-items: center;
}

.logo img{
  height: 34px;
  width: auto;
  display: block;
}

/* navabr mein searchbar or darkmode css  */
.nav-right{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
}

.nav-search{
  position: relative;
}

.nav-search input{
  width: 180px;
  height: 34px;
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0 40px 0 15px;
  background: #3a3d4a;
  color: white;
}

.nav-search i{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
}

.dark-btn{
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}


/* Hide scrollbar (optional) */
/* .top-nav::-webkit-scrollbar {
  display: none;
} */

/* Responsive code */
@media (max-width: 768px) {
  .top-nav {
    overflow-x: auto;
  }

  .top-nav a {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/* Layout */
.layout {
  display: flex;

}

/* Sidebar */
.sidebar {
  width: 250px;
  height: calc(100vh - 50px);
  overflow-y: auto;
  background: #f1f1f1;
  padding: 10px 8px;
  position: fixed;
  top: 50px;
  left: 0;
}

.sidebar h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.sidebar a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color:#111;
  font-size: 16px;
  line-height: 1.5;

}

.sidebar a.active {
  background-color: #4f46e5;
  color: white;
  border-radius: 6px;
}

/* .sidebar a:hover {
  background:#0055CC;
  color: white;
} */

/* Content  */
.content {
  flex: 1;
  padding: 30px;
  margin-top: 55px;
  margin-left: 250px;
  /* background: #ffffff; */

}

/* Menu button */
.menu-btn {
  font-size: 22px;
  padding: 8px 12px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* Responsive Mobile */
@media (max-width: 768px) {

  /* Mobile */
  .menu-btn {
    display: block;
  }

  .layout {
    flex-direction: column;
  }

  .sidebar {
    position: fixed;
    left: -260px;
    top: 50px;
    width: 250px;
    height: calc(100vh - 50px);
    background: #f1f1f1;
    transition: 0.3s;
    z-index: 1000;
  }

  .sidebar.active {
    left: 0;
  }
}

/* content  */
.content {
  flex: 1;
  padding: 20px;
  /* max-width: 900px; */
  /* background: #ffffff; */
}

.content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  
}

.content h2 {
  font-size: 27px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #333;
}

.content h3 {
    font-size: 21px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content p,
.content li {
  line-height: 1.6;
  font-size: 16px;
  
}

.note-box {
  background: #e7f3ff;
  border-left: 5px solid #2196f3;
  padding: 15px;
  margin: 20px 0;
}

.code-box {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  font-family: monospace;
}

/* Conent Box */
.content-box {
  max-width: 900px;
  line-height:1.7;
}


/* Intro text */
.intro {
  font-size: 16px;
  color: #333;
}

/* Code Box */
.code-box {
  background: #f5f5f5;
  border-left: 5px solid #4f46e5;
  padding: 12px 15px;
  margin: 10px 0 20px;
  font-family: Consolas, monospace;
  font-size: 14px;
}

/* Table */
.html-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.html-table th {
  background: #4f46e5;
  color: white;
  padding: 10px;
  text-align: left;
}

.html-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

/* Note Box */
.note {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 12px;
  margin-top: 15px;
}

.content h2 {
  margin-top: 25px;
  color: #2c3e50;
}

.content ul {
  margin-left: 20px;
}

.content p {
  line-height: 1.6;
}

/* TRY CODE BOX */

.example-box{
  background:#e7e9eb;
  padding:22px 20px 10px;  /* 👈 bottom zyada */
  border-left: 5px solid   #4f46e5; 
  border-radius:6px;
  margin:25px 0;
  position:relative;
  width: 800px;
}



.example-box .code-area{
  background:#ffffff;
  padding:20px;
  border-radius:4px;
  border-left:7px solid #0f766e; /* dark green like W3Schools */
  font-family: Consolas, monospace;
  font-size:15px;
}


.example-box .example-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
  color:#4f46e5;
}



/* .example-title {
  font-weight: bold;
  margin-bottom: 8px;
} */

.example-box pre {
  background: #f8fafc;
  padding: 12px;
  border-radius:5px;
  overflow-x: auto;
  line-height: 1.4;
    
}


.example-box .try-btn{
  margin-top:18px;
  background:#4f46e5;
  color:#fff;
  border:none;
  padding:10px 26px;   /* 👈 bigger button */
  font-size:16px;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  display: inline-block;
  text-decoration: none;
}

.example-box .try-btn:hover {
   background: #4338ca;  
}

/* .tag {
    color:#be185d;
}
 

.doctype {
    color: #0891b2;
    margin-left: -7px !important;
  
} */

.tag-list {
  margin: 20px 0;
}

.tag-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-left: 4px solid #4f46e5;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* .tag {
  font-family: Consolas, monospace;
  color: #d63384;
  font-weight: 600;
} */

.desc {
  color: #333;
}


.elements-wrapper{
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.element-card{
  flex: 1;
  background: #f8f9fc;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.element-card h3{
  margin-top: 0;
  color: #4f46e5;
}

.element-card ul{
  padding-left: 18px;
}

.element-card li{
  margin-bottom: 6px;
}

.attributes-card{
  background: #f8f9fc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 25px;
}

.attr-table{
  margin-top: 15px;
}

.attr-row{
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  padding: 12px 10px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.attr-head{
  font-weight: 600;
  background: #eef2ff;
  border-radius: 6px;
}

.attr-row code{
  background: #eef2ff;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.style-properties-box{
  background: white;
  padding: 20px 25px;
  border-left: 6px solid #4f46e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 20px 0;
}

.style-properties-box h2{
  margin-top: 0;
  color: #4f46e5;
}

.style-properties-box p{
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.style-properties-box ul{
  padding-left: 20px;
}

.style-properties-box li{
  margin-bottom: 8px;
}


/* CSS file code start  */

.syntax-wrapper {
  background: #e5e5e5;
  padding: 30px;
  width: fit-content;
  margin-top: 30px;
  font-family: system-ui;
}

.top-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
}

.selector-label {
  margin-left: 10px;
  font-size: 20px;

}

.decl1 {
  margin-left: 20px;
  font-size: 20px;
}

.decl2 {
  margin-right: 70px;
  font-size: 20px;
}

.middle-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.selector-circle {
  background:  #4f46e5;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
}

.declaration-pill {
  background:  #4f46e5;
  color: white;
  padding: 15px 35px;
  border-radius: 40px;
  font-size: 23px;
  font-weight: 500;
}

.bottom-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-left: 110px;
  padding-right: 40px;
}

.arrow-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
}

.arrow {
  width: 1px;
  height: 20px;
  background: black;
  position: relative;
  margin-bottom: 4px;
}

.arrow::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: -4px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

/* CSS introduction page card apply */
.css-benefits {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-top: 30px;
}

.css-benefits h2 {
    margin-bottom: 10px;
    font-size: 26px;
}

.css-benefits p {
    margin-bottom: 15px;
    color: #444;
}

.css-benefits ul {
    list-style: none;
    padding-left: 0;
}

.css-benefits ul li {
    background-color: #f4f6fa;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

/* other pseudo class selector  */
code {
  background-color: #f1f1f1;
  padding: 3px 6px;
  border-radius: 4px;
  font-family: monospace;
}





/* HEX color values 
.hex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .hex-grid {
    grid-template-columns: 1fr;
  }
} */

/* .box-model {
  width: 600px;
  margin: 40px auto;
  text-align: center;
  font-family: Arial;
} */

/* Margin */
/* .margin {
  background: #f1c27d;
  padding: 40px;
  border: 2px dashed black;
  padding-top: 20px;
} */

/* Border */
/* .border {
  background: #7daed3;
  padding: 40px;
  padding-top: 20px;
} */

/* Padding */
/* .padding {
  background: #78c2a4;
  padding: 40px;
  padding-top: 50px;
} */

/* Content */
/* .content-model {
  background: white;
  padding: 30px;
  border: 2px dashed black;
} */

/* .margin,
.border,
.padding {
  text-align: center;
  line-height:1;
} */



.boxmodel {
font-family: "Lato", sans-serif;
}
.boxmodel {
margin: 30px 0;
}
.boxmodel .margin {
  background: #f1f1f1;
  padding: 45px;
  width: 100%;
  height: 100%;
  position: relative;
  border: 2px dashed #bbb;
  transition: all .25s ease-in-out;
    color:black;

}
.boxmodel .margin:before {
  content: "Margin";
  font-size: 1.4em;
  position: absolute;
  left: 0;
  top: 1.8%;
  width: 100%;
  text-align: center;
}
.boxmodel .border {
  background-color: #4f46e5;
  padding: 45px;
  width: 100%;
  height: 100%;
  position: relative;
}
.boxmodel .border:before {
  content: "Border";
  font-size: 1.4em;
  color: black;
  position: absolute;
  left: 0;
  top: 2.5%;
  width: 100%;
  text-align: center;
}
.boxmodel .padding {
  color:black;
  padding: 45px;
  width: 100%;
  height: 100%;
  position: relative;
  background: #f1f1f1;
}
.boxmodel .padding:before {
  content: "Padding";
  font-size: 1.4em;
  position: absolute;
  left: 0.5%;
  top: 2.0%;
  width: 100%;
  text-align: center;
}
.boxmodel .contentmodel {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  background: white;
  border: 2px dashed #bbb;
}
.boxmodel .contentmodel:before {
  content: "Content";
  font-size: 1.4em;
  display: block;
  text-align: center;
  line-height: 3.5;
}

@media screen and (max-width: 450px) {
.boxmodel .margin {
  padding: 35px;
}
.boxmodel .margin:before {
  font-size: 1em;
  left: 0;
  top: 2.5%;
}
.boxmodel .border {
  padding: 35px;
}
.boxmodel .border:before {
  font-size: 1em;
  left: 0;
  top: 3.2%;
}
.boxmodel .padding {
  padding: 35px;
}
.boxmodel .padding:before {
  font-size: 1em;
  left: 0.5%;
  top:4.5%;
}
.boxmodel .content {
  padding: 20px;
}
.boxmodel .content:before {
  font-size: 1em;
}
}

@media screen and (max-width: 360px) {
.boxmodel .margin {
  padding: 25px;
}
.boxmodel .margin:before {
  font-size: 0.9em;
  left: 0;
  top: 1.5%;
}
.boxmodel .border {
  padding: 25px;
}
.boxmodel .border:before {
  font-size: 0.9em;
  left: 0;
  top: 2.2%;
}
.boxmodel .padding {
  padding: 25px;
}
.boxmodel .padding:before {
  font-size: 0.9em;
  left: 0.5%;
  top:2.5%;
}
.boxmodel .content {
  padding: 15px;
}
.boxmodel .content:before {
  font-size: 0.9em;
}
}


/* homepage css  */


/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 40px;
}

.hero p {
  color: #555;
}



.search-box {
    display: flex; /* Input aur Icon ko jorne ke liye */
    align-items: stretch;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    height: 50px; /* Search bar ki unchai */
}

.search-box input {
    flex: 1; /* Jitni jagah bachi hai wo input le le */
    padding: 0 20px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-right: none; /* Right side ka border hata diya taake icon se jur jaye */
    border-radius: 50px 0 0 50px; /* Sirf Left side se round */
    outline: none;
}

.search-icon-container {
    width: 100px; /* Icon wale dabe ki chorai */
    background: #4f46e5; /* Purple color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 50px 50px 0; /* Sirf Right side se round */
    cursor: pointer;
    transition: 0.3s;
}

.search-icon-container:hover {
    background: #4338ca; /* W3Schools jaisa hover (Optional) */
}

.search-icon-container i {
    font-size: 20px;
}



.btn {
  display: inline-block;
  margin-top: 20px;
  background: #4f46e5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

/* CARDS */
.languages {
  text-align: center;
  padding: 50px 20px;
}

.card-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card {
  background: #f1f1f1;
  /* padding: 30px 20px; */
  width: 320px;   /* pehle 200 tha → ab bada */
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Heading */
.card h3 {
  margin-bottom: 10px;
}

/* Paragraph */
.card p {
  color: #555;
}

/* BUTTON STYLE */
.card a {
  display: inline-block;
  margin-top: 15px;
  background: #4f46e5;
  color: white;
  padding: 7px 32px;
  border-radius: 27px;
  text-decoration: none;
  font-size: 17px;
}

.card a:hover {
  background: #4338ca;
}


.card-header-html { 
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%); 
}
.card-header-css { 
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); 
}
.card-header-js { 
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%); 
}
.card-header-python { 
    background: linear-gradient(135deg, #3776ab 0%, #ffd343 100%); 
}
.card-header-java { 
     background: linear-gradient(135deg, #f89820 0%, #e44d26 100%);  
}


.card-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-header svg {
    width: 80px;  /* Apni pasand ka size rakhein */
    height: 80px;
}

.card-body{
    padding: 15px 10px;
}


.card-body h3{
    font-size: 32px;
    /* margin-bottom: 15px; */
}

.card-body p{
    font-size: 19px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* .card-body a{
    display: inline-block;
    padding: 12px 28px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
} */

.card-body a:hover{
    background: #4338ca;
}

/* WHY */
.why {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.why-box p {
  margin: 10px 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}


/* About Us Page CSS  */


.about-section{
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.about-section h1{
    font-size: 42px;
    margin-bottom: 30px;
    color: #4f46e5;
}

.about-section p{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

/* Contact Us Page CSS */

.contact-section{
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.contact-section h1{
    font-size: 42px;
    color: #4f46e5;
    margin-bottom: 25px;
}

.contact-section p{
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.contact-info{
    margin: 40px 0;
}

.contact-info h2{
    color: #4f46e5;
    margin-bottom: 10px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
}

.contact-form textarea{
    resize: vertical;
}

.contact-form button{
    width: 200px;
    padding: 15px;
    border: none;
    background: #4f46e5;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #4338ca;
}


/* Footer CSS  */

.footer{
    background: #111827;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-links{
    margin-bottom: 20px;
}

.footer-links a{
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.footer-links a:hover{
    color: #a5b4fc;
}

.footer p{
    color: #ccc;
    font-size: 14px;
}

/* privacy policy  */

.privacy-section{
    max-width: 950px;
    margin: 80px auto;
    padding: 20px;
}

.privacy-section h1{
    font-size: 42px;
    color: #4f46e5;
    margin-bottom: 30px;
}

.privacy-section h2{
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #111827;
}

.privacy-section p{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.privacy-section ul{
    margin-left: 25px;
    margin-bottom: 25px;
}

.privacy-section ul li{
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
}

/* terms page css  */

.terms-section{
    max-width: 950px;
    margin: 80px auto;
    padding: 20px;
}

.terms-section h1{
    font-size: 42px;
    color: #4f46e5;
    margin-bottom: 30px;
}

.terms-section h2{
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #111827;
}

.terms-section p{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.terms-section ul{
    margin-left: 25px;
    margin-bottom: 25px;
}

.terms-section ul li{
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
}

/* Disclaimer  */

.disclaimer-section{
    max-width: 950px;
    margin: 80px auto;
    padding: 20px;
}

.disclaimer-section h1{
    font-size: 42px;
    color: #4f46e5;
    margin-bottom: 30px;
}

.disclaimer-section h2{
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #111827;
}

.disclaimer-section p{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}



/* Example boxes ke CodeMirror ki height code ke mutabiq automatic */
.example-box .CodeMirror {
    height: auto !important;
    min-height: 100px;
}

/* Extra vertical scrollbar remove */
.example-box .CodeMirror-scroll {
    overflow-y: hidden !important;
    overflow-x: auto !important;
}




/* agr ye css idhr kam naa kry tou isy hr file ky head mein laga doun ga or ye 
example box ky code colour ki css ha  */

        /* HTML Tags: html, body, h1, p, etc. */
.CodeMirror .cm-tag {
    color: #f92672 !important;
}

/* DOCTYPE */
.CodeMirror .cm-meta {
    color: #8292a2 !important;
}

/* Attributes: style */
.CodeMirror .cm-attribute {
    color: #a6e22e !important;
}

/* Attribute values: "color:red;" / "color:green;" */
.CodeMirror .cm-string {
    color: #e6db74 !important;
}


/* CSS properties aur unki values ka same color */
.cm-s-material-darker .cm-property,
.cm-s-material-darker .cm-atom,
.cm-s-material-darker .cm-keyword,
.cm-s-material-darker .cm-number {
    color: #c792ea !important;
}




.CodeMirror {
    cursor: default !important;
}

.CodeMirror pre {
    cursor: default !important;
}

.CodeMirror pre span {
    cursor: text !important;
}




