#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 */
}

/* 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;
}
.section {
      margin-bottom: 80px;
    }

    .color-box {
      width: 60%;
      margin: 0 auto 30px;
      padding: 40px;
      font-size: 24px;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .sliders {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 20px;
    }

    .slider-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    input[type=range] {
      -webkit-appearance: none;
      width: 150px;
      height: 8px;
      background: #ddd;
      border-radius: 5px;
      outline: none;
    }

    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 20px;
      width: 20px;
      background: blue;
      border-radius: 50%;
      cursor: pointer;
    }

    .label {
      font-weight: bold;
      margin-top: 10px;
    }

    .value {
      margin-top: 5px;
    }

    h2 {
      margin-bottom: 10px;
    }

    table {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            margin-left: 0px;
        }
        th, td {
            padding: 12px 15px;
            border: 1px solid #ccc;
            text-align: left;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }