
  /* Container for buttons */
  #result-json .btn-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }

  /* Common button styles */
  #result-json .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    transition: background 0.3s, transform 0.2s;
  }

  /* Specific button colors */
  #result-json #regenerateBtn {
    background-color: #007bff; /* Blue */
  }

  #result-json #printBtn {
    background-color: #28a745; /* Green */
  }

  #result-json #downloadPdfBtn {
    background-color: #dc3545; /* Red */
  }

  /* Hover effect */
  #result-json .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* Optional: Add shadow */
  #result-json .btn {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

