/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #d8e7f7;
}

/* Sidebar */
.sidebar {
  width: 220px;
  height: 100vh;
  background: #1e293b;
  color: white;
  position: fixed;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 15px;
}

.sidebar-logo .logo {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
}

.sidebar a:hover {
  background: #334155;
}

/* Main content */
.main {
  margin-left: 220px;
  padding: 20px;
}

/* Sections */
.section {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  padding: 12px 20px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn:hover {
  background: #1d4ed8;
}

/* Inputs and selects */
input, select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
}

/* Ideas List */
#ideaList {
  list-style: none;
}

#ideaList li {
  padding: 10px;
  border-bottom: 1px solid #cbd5f5;
  font-size: 16px;
}
