* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.container {
  width: 100%;
  max-width: 390px;
  padding: 20px;
}

.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;
}

#status-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #4CAF50;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#emergency-button {
  width: 100%;
  height: auto;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#emergency-button:hover {
  transform: scale(1.05);
}

#emergency-button:active {
  transform: scale(0.95);
}

#emergency-button i {
  font-size: 4rem;
}

#toast-container {
  display: inline-block;
  position: absolute;
  top: 50px;
  height: 50px;
  width: 200px!important;
  left: calc(50% - 140px);
}

.toast.rounded {
  width: 280px;
}

@media (max-width: 600px) {
  .toast {
  }
  #emergency-button {
    font-size: 1.5rem;
  }

  #emergency-button i {
    font-size: 3rem;
  }

  #status-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  #emergency-button {
    font-size: 1.2rem;
  }

  #emergency-button i {
    font-size: 2.5rem;
  }

  #status-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  
}
