/* ======================================================
   assets/css/financeiro.css
   ====================================================== */

body {
  margin: 0;
  background: #f4f6f9;
  font-family: "Segoe UI", Arial, sans-serif;
}

.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #1f2937;
  color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
}

.sidebar-header {
  padding: 20px;
  font-size: 18px;
  background: #111827;
}

.sidebar-menu {
  padding: 10px 0;
}

.sidebar-menu a {
  display: block;
  padding: 12px 20px;
  color: #cbd5e1;
  text-decoration: none;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: #2563eb;
  color: #fff;
}

.sidebar-menu hr {
  border-color: #374151;
}

/* Conteúdo */
.main-content {
  margin-left: 250px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}

.content-area {
  padding: 25px;
}
