body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #1877f2, #00d2ff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-container {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1877f2;
  margin-bottom: 25px;
}

.temperature-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(#1877f2 var(--fill, 0%), #e0e0e0 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
}

.temperature-circle span {
  font-size: 36px;
  font-weight: bold;
  color: #1877f2;
}

.btn-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-box a {
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.alert {
  background: #f0f4f8;
  color: #1877f2;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .dashboard-container {
    padding: 20px 15px;
  }

  .temperature-circle {
    width: 150px;
    height: 150px;
  }

  .temperature-circle span {
    font-size: 28px;
  }
}
