/* SASS Syntax: https: //sass-lang.com/  */
/* Basic reset for full page layout */
/*html, body {
    margin: 0;
    padding: 0;
    height: 100%;*/ /* Ensure html and body take full viewport height */
/*overflow: hidden;*/ /* Prevent scrollbars from showing up due to resizing */
/*}*/
/* Dock Panel Container */
.dock-panel-container {
  /* grid-template-columns and grid-template-rows are set dynamically by Blazor */
  /*height: 100vh;*/ /* Take full viewport height */
  /*width: 100vw;*/ /* Take full viewport width */
  font-family: sans-serif; /* Using Inter font as per instructions */
  /*border-radius: 8px;*/ /* Rounded corners for the main container */
  overflow: hidden; /* Ensure content doesn't spill outside the container */
}

/* Panel Styling */
.dock-panel-top,
.dock-panel-bottom,
.dock-panel-left,
.dock-panel-right,
.dock-panel-center {
  display: flex;
  flex-direction: column; /* Arrange content vertically within panels */
  justify-content: flex-start; /* Align content to the top */
  align-items: flex-start; /* Align content to the left */
  font-size: 1.2em;
  box-sizing: border-box; /* Include padding in the element's total width/height */
  overflow: auto; /* Allow internal scrolling if content overflows the panel */
  /*  background-color: #f0f0f0;*/ /* Light grey background for panels */
  /*  border: 1px solid #ddd;*/ /* Subtle border for visual separation */
  /*  border-radius: 6px;*/ /* Slightly smaller rounded corners for internal panels */
  /*  margin: 2px;*/ /* Small margin between panels for visual separation */
  /*  padding: 10px;*/
  /*  color: #555;*/
}

/* Specific styling for the center panel */
.dock-panel-center {
  background-color: #ffffff; /* White background for the main content area */
  color: #333;
  font-weight: bold;
}

/* Splitter Styling */
.dock-panel-splitter {
  background-color: #ccc; /* Grey background for splitters */
  position: relative; /* For cursor and hover effects */
  z-index: 10; /* Ensure splitter is above other content */
  transition: background-color 0.2s ease; /* Smooth transition on hover */
}

.dock-panel-splitter:hover {
  background-color: #aaa; /* Darker grey on hover */
}

.dock-panel-splitter-horizontal {
  cursor: ns-resize; /* North-South resize cursor for horizontal splitters */
}

.dock-panel-splitter-vertical {
  cursor: ew-resize; /* East-West resize cursor for vertical splitters */
}

/* Style when a splitter is being dragged */
.dock-panel-splitter.dragging {
  background-color: #888; /* Even darker grey when actively dragging */
}

.test {
  color: red;
}

/*# sourceMappingURL=BladeBlazor.css.map */
