.hcc-converter-container {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.hcc-converter-container h3{
  color:  #4b4b4b;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.hcc-converter-container h3:after {
    border-bottom: 2px solid #c44;
    display: block;
    content: '';
    margin-left: 45%;
    width: 10%;
    padding-top: 10px;
    margin-bottom: 30px;
}

.hcc-converter-container .disclaimer{
	font-size: 0.9rem;
	padding: 10px 0;
	text-align: center;
}
.hcc-input-group, .hcc-select-group {
    margin-bottom: 15px;
}

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

input[type="number"], select {
    width: calc(100% - 12px);
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

button#hcc-convert-button {
  font-family: "Playfair Display", serif;
  border: solid 1px #e7d6b2;
  border-radius: 10px;
  display: inline-block;
  font-size: 1rem;
  padding: 12px 20px;
  background-color: #005f73;
  color: #e7d6b2;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button#hcc-convert-button:hover {
  background-color: #591908;
  color: #fff;
}

.hcc-result {
    margin-top: 20px;
    color: #f4f1ec;
    padding: 20px;
    border-radius: 5px;
    background-color: #005f73;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}