
/* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #1e1e1e;
  color: white;
  padding: 20px;
}

header h1 {
  text-align: center;
  color: lime;
  top: 5px;
  position: fixed;
  width: 100vw;
}
h1 {
  font-size: 14px;
  width: 100vw;
  color: lime;
}

/* Styling for Input Fields */
input[type="text"] {
  width: 100%;
  height: 50px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #555;
  border-radius: 4px;
  background-color: #333;
  color: white;
}

input[type="text"]:focus {
  border: 2px solid #888;
}

/* Styling for Buttons */
button {
  background-color: #333; /* Green */
  border: 1px solid #555;
  color: white;
  padding: 15px 32px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

button:hover {
  background-color: purple;
}



/* Styling for Command Output */
#cmdOutput {
  background-color: #262626;
  border: 1px solid #555;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  white-space: pre; 
  color: lime;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#cordovaCmdOutput {
  background-color: #262626;
  border: 1px solid #555;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  white-space: pre; 
  color: #ffd91a;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

footer {
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}



footer p {
  font-size: 14px;
  color: white;
}


#appNameInput {
  text-align: center;
  font-size: 20px;
  color: lime;
}

label {
  text-align: center;
}
