/*
Theme Name: Wowdash Theme
Theme URI: https://dashboard.getbiz.credit
Author: GetBiz
Description: Proof-of-concept theme wrapping the Wowdash admin UI into WordPress.
Version: 1.0.0
Text Domain: wowdash-theme
*/
/* Real styles are enqueued from /assets/css/style.css */

/* Make the main area fill the viewport and keep cards away from the footer */
/* main column is a flex column so footer sits after content */
.wowdash-layout .main-wrapper{
  display:flex;
  flex-direction:column;
  min-height:calc(100vh - var(--wp-admin--admin-bar--height,32px));
}
.wowdash-layout .content-wrapper,
.dashboard-main-body{ flex:1 1 auto; }

/* fixed sidebar width + offset */
.wowdash-layout{ --wowdash-sidebar-w:260px; }
.wowdash-layout .sidebar{ width:var(--wowdash-sidebar-w); }
.wowdash-layout .main-wrapper{ margin-left:var(--wowdash-sidebar-w); }

/* footer styling & alignment */
.d-footer{
  margin-left:var(--wowdash-sidebar-w);
  padding:16px;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
}

/* mobile */
@media (max-width:992px){
  .wowdash-layout .main-wrapper{ margin-left:0; }
  .d-footer{ margin-left:0; }
}
