/* Under "blue" skin, change the dashboard header background */
.skin-blue .main-header .navbar {
  background-color: #d95a87 !important;
}

/* Under "blue" skin, change the logo area (top left) */
.skin-blue .main-header .logo {
    background-color: #d95a87 !important;
}

/* Under "blue" skin, change the sidebar toggle (or "hamburger menu") button */
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  background-color: #d84579 !important;
}
  
/* Under "blue" skin, change the sidebar background */
.skin-blue .main-sidebar {
  background-color: #5e2f82 !important;
}

.skin-blue .main-sidebar .sidebar .sidebar-menu > li.active > a,
.skin-blue .main-sidebar .sidebar .sidebar-menu > li:hover > a {
  border-left: 5px solid #955dba !important; /* vertical line color */
  background: #955dba !important;            /* background color */
  color: #fff !important;                    /* text color */
}

/* Make inactive sidebar menu item text white */
.skin-blue .main-sidebar .sidebar .sidebar-menu > li > a {
  color: #fff !important;
}

/* Set the background of the submenu container to match the sidebar or submenu item */
.skin-blue .main-sidebar .sidebar .sidebar-menu .treeview-menu {
  background: #663989 !important; /* match your submenu item background */
}

/* Inactive sidebar submenu items */
.skin-blue .main-sidebar .sidebar .sidebar-menu .treeview-menu > li > a {
  background: #663989 !important;            /* your desired background */
  border-left: 5px solid #663989 !important; /* vertical line color */
  color: #fff !important;                    /* white text */
}

/* Active or hovered sidebar submenu items */
.skin-blue .main-sidebar .sidebar .sidebar-menu .treeview-menu > li.active > a,
.skin-blue .main-sidebar .sidebar .sidebar-menu .treeview-menu > li > a:hover {
  background: #955dba !important;            /* your highlight background */
  border-left: 5px solid #955dba !important; /* vertical line color */
  color: #fff !important;                    /* white text */
}

/* Change the main dashboard body background */
.skin-blue .content-wrapper,
.skin-blue .right-side {
  background-color: #fae0e8 !important; /* Replace with your desired color */
}

/* Custom box styling under skin-blue */
.skin-blue .box {
  border: none !important;
  box-shadow: none !important; /* for flat look */
  background: #fdfafc !important; /* keep your box background */
}

/* Hero section styling */
.hero-logo {
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* Drawing canvas styling */
#drawingCanvas {
  transition: box-shadow 0.3s ease;
}

#drawingCanvas:hover {
  box-shadow: 0 4px 8px rgba(94, 47, 130, 0.2) !important;
}

/* Enhanced box titles with better visibility */
.skin-blue .box.box-primary > .box-header {
  background: linear-gradient(135deg, #5e2f82, #955dba) !important;
  color: white !important;
}

.skin-blue .box.box-info > .box-header {
  background: linear-gradient(135deg, #663989, #955dba) !important;
  color: white !important;
}

.skin-blue .box.box-warning > .box-header {
  background: linear-gradient(135deg, #d95a87, #955dba) !important;
  color: white !important;
}

.skin-blue .box.box-danger > .box-header {
  background: linear-gradient(135deg, #d84579, #d95a87) !important;
  color: white !important;
}

.skin-blue .box.box-success > .box-header {
  background: linear-gradient(135deg, #955dba, #663989) !important;
  color: white !important;
}


