/* style.css */
 body {
	 font-family: Arial, sans-serif;
	 font-size: 16px;
	 line-height: 1.5;
	 background-color: black;
	 color: white;
}
h1 {
	 font-size: 36px;
	 margin-bottom: 20px;
	 text-align: center;
}
hr {
	border: 1px solid #ccc;
}
form {
	 background-color: #222;
	 padding: 20px;
	 border-radius: 4px;
}
label {
	 display: block;
	 margin-bottom: 10px;
	 font-weight: bold;
	 color: white;
}
input[type="text"] {
	 width: 100%;
	 padding: 10px;
	 border-radius: 4px;
	 border: 1px solid #ccc;
	 box-sizing: border-box;
	 margin-bottom: 20px;
	 background-color: #333;
	 color: white;
}
input[type="submit"] {
	 background-color: #0073aa;
	 color: #fff;
	 padding: 10px 20px;
	 border: none;
	 border-radius: 4px;
	 cursor: pointer;
	 font-size: 16px;
}
input[type="submit"]:hover {
	 background-color: #005c8c;
}
.result {
	 margin-top: 20px;
	 padding: 20px;
	 background-color: #222;
	 border-radius: 4px;
	 overflow: auto;
}
.result pre {
	 font-family: monospace;
	 font-size: 12px;
	 margin: 0;
	 padding: 0;
	 white-space: pre-wrap;
	 word-wrap: break-word;
	 color: white;
}
a {
    color: white;
}

a:hover {
    color: #ccc;
}

a:visited {
    color: #999;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 20px;
    background-color: #333;
    color: white;
}





  /* CSS for the buttons */
    .form-container {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .form-container input[type="submit"], #switchBtn {
      background-color: #0073aa;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }
    
    #switchBtn {
      position: fixed;
      top: 10px;
      right: 10px;
    }
