

form {
    width: 100%;
    padding: 20px;
    background: #06364a;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
		color: #fff;
}

input { /* Site Name Input Box and Domain Name Input Box */
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
		color: #06364a;
}

textarea { /* Addtional Details and Generated Query Preview  */
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
		color: #06364a;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
		color: antiquewhite;
background: rgb(6,54,74);
background: -moz-linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
background: linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06364a",endColorstr="#06364a",GradientType=1);
}

input[type="color"] {
    width: 100px; /* Do not stretch to 100% */
    margin-bottom: 20px;
}

button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

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

#queryOutput {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
		background: rgb(6,54,74);
    background: -moz-linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
    background: linear-gradient(90deg, rgba(6,54,74,1) 0%, rgba(61,181,231,1) 50%, rgba(6,54,74,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06364a",endColorstr="#06364a",GradientType=1);
}

#queryOutput h3 {
    color: #fff;
}

#generatedQuery {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    resize: vertical; /* Allows the user to resize the textarea vertically */
}

#copyFeedback {
    display: none; /* Hidden by default */
    color: #28a745; /* Success message color, can match your design */
    margin-top: 10px;
    font-size: 0.9em;
}












.tooladwrap {
    width: 100%;
    display: inline-block;
    padding: 17px;
    background: #efefef;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 7px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.container {
    width: 100%;
    margin: 17px 0 10px 0;
    background: #06364a;
    padding: 17px;
		padding-bottom: 0;
		border: 4px solid #127eab;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);*/
		display: inline-block;
		border-radius: 5px;
		float: left;
}

.container .full {
box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
/*border: 1px solid #fff;*/
text-align: center;
width: 100%;
clear: both;
padding: 10px;
margin-bottom: 20px;
display: inline-block;
overflow: hidden;
/*background: #2c4e47;*/
border-radius: 5px;
}

.tooltitle {
margin-top: 0;
margin-bottom: 20px;
text-align: left;
color: #fff;
font-size: 1.2em;
line-height: 2;
}

.container .instructions {
color: #74968d;
margin-top: 10px;
font-size: .9em;
text-align: left;
}

.ta-heading {
color: #74968d;
margin-bottom: 5px;
}

.copyButton {
margin-top: 0;
position: relative;
display: inline-block;
}

.copyConfirmation {
  margin-left: 10px;
  color: #fff;
}

textarea::placeholder {
  color: darkgray;
}

button {
background-color: #00688b;
color: #fff;
border-radius: 7px;
padding: 5px 10px 5px 10px;
text-align: center;
border: none;
box-shadow: 0 0 17px rgba(0, 0, 0, 0.6) ;
cursor: pointer;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px !important;
}

button:hover {
background-color: #76978e;
}

.toolLogo {
float: left;
margin-right: 15px;
width: 40px;
margin-bottom: 20px;
}





@media screen and (min-width: 0px) and (max-width: 780px) {
.container {width: 100%; float: left; padding: 0;}

.tooladwrap {
padding: 0;
margin-top: -10px;
display: block;
}

.toolLogo {
margin-bottom: 0;
margin-left: 10px;
margin-top: 5px;
}

}
