body {
    background: #0d0d0d;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    text-align: center;
}
h1 { color: #90caf9; }
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #1976d2;
    color: white;
    border-radius: 5px;
    margin: 10px;
    text-decoration: none;
}
.btn:hover { background: #1565c0; }
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}
#review-section {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
}
.review-item {
    margin-bottom: 15px;
}

/* Base font size for better readability */
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
  color: #e0e0e0;
  background-color: #121212;
  padding: 1rem;
}

/* Review section styling */
#review-section {
  max-width: 600px;
  margin: 0 auto;
}

/* Review items */
.review-item {
  font-size: 1.1rem;
  padding: 12px 10px;
}

/* Avatar images */
.avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 12px;
}

/* Headings */
h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

/* Textareas and inputs */
textarea, select {
  width: 100%;
  font-size: 1.1rem;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  background-color: #222;
  color: #eee;
  resize: vertical;
  min-height: 80px;
}

/* Buttons */
button {
  font-size: 1.1rem;
  padding: 12px 20px;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 6px 0;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1565c0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  body {
    font-size: 18px;
  }

  .review-item {
    font-size: 1.2rem;
    padding: 16px 12px;
  }

  textarea, select {
    font-size: 1.2rem;
    min-height: 100px;
  }

  button {
    font-size: 1.2rem;
    padding: 14px 24px;
  }
}


/* Mobile-only improvements */
@media (max-width: 600px) {
  body {
    font-size: 18px;
    padding: 1rem;
  }

  #review-section {
    max-width: 100%;
    padding: 0 1rem;
  }

  .review-item {
    font-size: 1.2rem;
    padding: 16px 12px;
  }

  textarea, select {
    font-size: 1.2rem;
    min-height: 100px;
    padding: 12px;
  }

  button {
    font-size: 1.2rem;
    padding: 14px 24px;
  }

  h3 {
    font-size: 1.5rem;
  }
}
