/**
* This component uses Tailwind CSS and DaisyUI.
* Only add styles here that should not be applied by Tailwind, Daisy, or the theme.
*/
.modus-wc-panel {
  border: 1px solid var(--modus-wc-color-gray-0);
  border-radius: var(--rounded-box);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modus-wc-panel-floating {
  box-shadow: rgba(36, 35, 45, 0.3) 1px 0 4px;
}

.modus-wc-panel-header,
.modus-wc-panel-body,
.modus-wc-panel-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modus-wc-panel-header {
  flex-shrink: 0;
}

.modus-wc-panel-header:empty {
  display: none;
}

.modus-wc-panel-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.modus-wc-panel-footer {
  flex-shrink: 0;
}

.modus-wc-panel-footer:empty {
  display: none;
}