body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
}

h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 30px;
}

button {
  padding: 10px 18px;
  margin: 5px;
  border: none;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #0056b3;
}

.termShareDiv {
  background: white;
  padding: 15px;
  margin: 15px auto;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.termShareDiv button {
  width: 90%;
}

input[type="file"] {
  display: none; /* keep them hidden unless triggered */
}

@media (min-width: 600px) {
  .termShareDiv {
    flex-direction: row;
    justify-content: space-between;
  }
  .termShareDiv button {
    width: auto;
  }
}
