.temp-converter {
    max-width: 450px;
    background: #f9f9f9;
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 8px #ccc;
    font-family: Arial, sans-serif;
}
.temp-converter h3 {
    text-align: center;
    margin-bottom: 15px;
}
.temp-converter label {
    display: block;
    margin-bottom: 10px;
}
.temp-converter input,
.temp-converter select {
    width: 100%;
    padding: 6px;
    margin-top: 5px;
}
.temp-converter button {
    width: 100%;
    padding: 10px;
    background: #007cba;
    color: white;
    border: none;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.temp-converter button:hover {
    background: #005f8a;
}
#temp-result {
    margin-top: 15px;
    padding: 10px;
    background: #eef;
    border-radius: 6px;
}
