/* Orzatty Workspace — Material 3 */
body {
  font-family: 'Roboto', sans-serif;
  background: #fefbff;
  color: #1c1b1f;
  margin: 0;
  padding: 0;
}

.app-container {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background: #f7f2fa;
  border-right: 1px solid #e7e0ec;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: 1rem;
}

.sidebar-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.sidebar-header p {
  color: #49454f;
  margin: 0.5rem 0;
}

md-list {
  padding: 0;
}

md-list-item {
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

md-list-item:hover {
  background: #e8def8;
}

/* Main */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.main-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.main-header p {
  color: #49454f;
  margin: 0.5rem 0 2rem;
}

/* Launcher */
.launcher h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}

.app-card {
  background: #fff;
  border: 1px solid #e7e0ec;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.app-card md-icon {
  font-size: 2.5rem;
  color: #6750a4;
}

.app-card span {
  font-weight: 500;
  color: #1c1b1f;
}

/* Alert */
#alert {
  margin-top: 2rem;
}
