body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;

  background-color: #f0f0f0; /* Set background color for the body */
	background-image: URL(http://ipfs.safewatch.care/ipfs/QmTjAH2cBbjyG4eJw5jmwSxREihv5Rz6sGHEejb2ZEjZ8W/sec-bg.jpg);
	background-size: cover;
	background-position: center;
  background-attachment: fixed;
  height: 100vh;
}

.container {
	margin-top: 20px;
	padding: 10px;
  background-color: #f0f0f0; /* Set background color for the body */
  background-color: rgba(255, 255, 255, 0.86); /* White background with 98% opacity */
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#resultAndFeedback {
    margin-top: 10px;
    padding: 10px;
}
#result {
    padding: 1rem;
}

h1 {
    color: #333;
    text-align: center;
}

.input-group {
    display: flex;
    align-items: center; /* Align items vertically */
    margin-bottom: 20px;
}
@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
    align-items: stretch;
  }
}


label {
    display: block;
    margin-bottom: 5px;
}

input {
    /* width: calc(64% - 20px); */
    padding: 10px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

button:hover {
    background-color: #45a049;
}

#feedback {
    display: none;
}

#treeVisualization pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

#treeVisualization {
    max-width: 100%;
    overflow-x: auto;
}

#treeVisualization svg {
    max-width: 100%;
    height: auto;
}

/* New styles for download links */
.download-links {
    margin-top: 15px;
}

.button {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #f0f0f0;
    color: black;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.button:hover {
    background-color: #e0e0e0;
}

