.expandable-text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.text-content {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
}

.toggle-button {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.toggle-button:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .expandable-text {
    padding: 0.75rem;
  }
  
  .text-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .expandable-text {
    padding: 0.5rem;
  }
  
  .text-content {
    font-size: 0.9rem;
  }
} 