/* Home Page Styles */
.home-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 20px;
}

.home-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease;
}

.home-card:hover {
  transform: translateY(-5px);
}

.home-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.home-subtitle {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-box {
  background-color: #f8f9fa;
  border-left: 4px solid #3498db;
  padding: 15px 20px;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 4px;
}

.info-box h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #2c3e50;
}

.info-box p {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
  line-height: 1.5;
}

.start-button {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.start-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hidden {
  display: none !important;
}

.edit-btn {
  background: none;
  border: none;
  color: #3498db;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 10px;
}

.edit-textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.save-btn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.cancel-btn {
  background-color: #95a5a6;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  font-weight: bold;
}