#Button-placeholder {
  min-height: 100vh;
  background-color: #f8f9fa; /* Light gray sidebar */
  padding-top: 20px;
}
.editor-container {
  max-height: 400px;
  height: auto;
  min-height: 100px;
  border: 1px solid #333;
}
/*  */

/*  */


#Button-placeholder .dropdown-menu {
  position: static !important;
  float: none;
  margin-top: 0.25rem;
  width: 100%;
  /* optionally tweak borders/background to look like a menu */
}

/*  */
.btn-primary {
  background: #5a9bd6 !important;   /* footer color se thoda light */
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  transition: background-color 0.35s ease-in-out !important;
}

.btn-primary:hover {
  background: #4386c1 !important;   /* footer wala exact color on hover */
}

/*  */

/* Custom dark button */
.btn-success {
  background-color: #0d4b83 !important;  /* Darker shade */
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}


.btn-success:active {
  transform: translateY(0); /* Press-down effect */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



/*  */

/* Responsive sidebar/content layout */
.responsive-wrapper {
  display: flex;
  min-height: 100vh;
}
.sidebar-area {
  width: 25%;
  background: #f8f9fa;
}
.main-content-area {
  width: 75%;
  padding: 24px;
}

@media (max-width: 767px) {
  .container-fluid > .row {
    display: block !important;
  }
  .col-md-3, .col-md-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .col-md-9 {
    padding-top: 0 !important;
  }
  #Button-placeholder {
    min-height: 0 !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .editor-output-block {
    margin-top: 10px;
    padding-top: 10px;
  }
  body, .container-fluid, .row,
  .sidebar-toggle-btn,
  .col-12.text-center,
  #sidebarMenu {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
  /* Code Copy Block */
#codeEditor {
  user-select: none;
  -webkit-user-select: none;
}
#codeEditor.copy-unlocked {
  user-select: text;
  -webkit-user-select: text;
}

