body {
  background-color: #f8f9fa;
  /* Light grey background */
}

.container {
  max-width: 600px;
  margin: 20px auto;
}

.section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

button {
  margin-top: 10px;
  width: 100%;
}

#result,
#cmResult {
  font-size: 2em;
  text-align: center;
  margin-top: 20px;
}

/* Note Button on Home Page */
.note-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Notes Page Styling */
.notes-page {
  background-color: #8cd4c9;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

.timer {
  font-size: 24px;
  color: white;
}

.note-actions {
  display: flex;
  gap: 15px;
}

.note-actions button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.notes-content {
  padding: 20px;
  height: calc(100vh - 80px);
}

#noteArea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  resize: none;
  padding: 10px;
}

#noteArea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
