.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;

}

.main-area {
  margin-left: 250px;
  flex: 1;
  min-width: 0; 
  transition: margin-left 0.3s ease;
}
/* Main content */
.main-content {
  padding: 25px;
  flex-grow: 1;
  background: #F3F5F9;
}

/* Footer */
footer {
  padding: 15px 25px;
  background: #fff;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

/* Responsive main area */
@media (max-width: 768px) {
  .main-area {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .dashboard-wrapper {
    overflow-x: hidden;
  }
}
.main-content .alert {
  margin-bottom: 20px;
  border-radius: 6px;
}

.btn-custom {
  background-color: #4b1d5a !important;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

.ck-editor__editable_inline {
    min-height: 250px; 
}