body {
    font-family: Arial, sans-serif;
	background-color: #2c2c2c;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-position: center; 
	background-size: cover;
}

form {
    max-width: 400px;
    margin: 20px auto;
	background-color: rgba(0,0,0,0.4);
	border-radius: 25px;
	padding-right: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
	margin-left: 10px;
	color: white;
}

select, input {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}


input[type="submit"] {
    background-color: #0586C4;
    color: white;
    cursor: pointer;
}

input[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#output {
    margin-top: 20px;
}

#price {
	margin: auto;
	font-weight: bold;
	padding: 20px;
    font-size: 20px;
	font-style: bold;
	text-align: center;
	background-color: rgba(0,0,0,0.4);
	color: #0586C4;
	border: none;
	border-radius: 0px 0px 25px 25px;
}

.res {
		text-align: center;
		color: white;     
		padding: 100px 0 0 0;
        font-size: larger;
}
	
.container {
      display: grid;
	  grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      height: 100px; 
	  text-align: center;
	  color: white;       
	  line-height: 50px;
	  border-radius: 25px 25px 0px 0px;
    }

.quadrant {
}

.dropdowns {
      margin: 10px;
      padding: 20px;
      font-size: 16px;
	  width: 100%;
	  background-color: rgba(0,0,0,0.2);
	  color: white;
	  border: none;
	  cursor: pointer;
	  border-radius: 8px;
	  border: 2px solid white;
	}
	
.dropdowns option {
	  background-color: white;
	  color: black;
	}

	
.btn {
	  margin: 10px;
      padding: 20px;
      font-size: 16px;
	  width: 100%;
	  background-color: rgba(0,0,0,0.2);
	  color: black;
	  border: none;
	  cursor: pointer;
	  border-radius: 8px;
	  border: 2px solid white;
	}

footer {
  text-align: center;
  padding: 3px;
  background-color: rgba(0,0,0,0.2);
  color: white;
  width: 100%;
}

.social-icons a {
            margin: 0 10px;
            text-decoration: none;
            color: #fff; /* Adjust color as needed */
			font-size: 50px;
        }