.cct-container {
  background: #f9f9f9;
  padding: 25px;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
}

.cct-container h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#cct-textarea {
  width: 100%;
  height: 180px;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
  margin-bottom: 15px;
}

.cct-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cct-buttons button {
  padding: 10px 15px;
  font-size: 0.9rem;
  background: #005bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.cct-buttons button:hover {
  background: #0041cc;
}
