/* temperature.css */

body {
  background-color: #f4f9ff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.container {
  max-width: 500px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  color: #023e8a;
  margin-bottom: 1.5rem;
}

.converter-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
  text-align: left;
}

input, select {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  background-color: #023e8a;
  color: white;
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #014f86;
}

.result {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #444;
}
.icon-small {
  width: 50px;         /* Adjust size as needed */
  height: 50px;
  vertical-align: middle;  /* Aligns with text */
  margin-right: 16px;       /* Space between icon and text */
}
 section {
      background-color: #fdfdfd;
      padding: 25px;
      margin: 30px auto;
      max-width: 850px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    }

    h2 {
      color: #1a237e;
      font-size: 26px;
      margin-bottom: 12px;
    }

    p, li {
      color: #333;
      font-size: 17px;
      line-height: 1.7;
      text-align: justify;
    }

    ol {
      padding-left: 22px;
    }