/* Layout styles */

/* Main Layout */
.min-h-screen {
  min-height: 100vh;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

/* Navbar */
.navbar {
  width: 100%;
  height: 3.5rem;
  padding: 1rem;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Main Content Layout */
.main-content {
  display: flex;
  flex-grow: 1;
}

/* Sidebar */
.sidebar {
  width: 16rem;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Content Area */
.content-area {
  flex-grow: 1;
  padding: 2rem;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    width: 100%;
  }
  
  .main-content {
    flex-direction: column;
  }
} 