/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #333;
  color: #fff;
}

/* Header */
header {
  background-color: #444;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
}

h1 {
  margin: 0;
  font-size: 2.5em;
}

#alert {
  margin-top: 5px;
  font-size: 1.5em;
  color: red;
}

/* Layout */
#layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  gap: 20px;
  margin: auto;
}

/* Map Section */
#map {
  height: 600px;
  width: 65%;
  border: 2px solid #fff;
  border-radius: 5px;
}

/* Right-side Section */
#right-content {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LINE Button */
.line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00c300;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  font-family: Arial, sans-serif;
  padding: 10px 20px;
  border-radius: 5px;
}

.line-icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.line-button:hover {
  background-color: #009f00;
}

/* Settings Section */
#settings {
  text-align: center;
}

#settings label {
  font-size: 1.2em;
}

#settings select {
  font-size: 1.2em;
  padding: 5px;
}

/* Earthquake Data */
#earthquake-data {
  padding: 15px;
  background-color: #444;
  border-radius: 5px;
  text-align: left;
}

#earthquake-data h2 {
  margin-top: 0;
  font-size: 1.8em;
}

#earthquake-data p {
  font-size: 1.2em;
}

/* Current Time Display */
#current-time {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #444;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1.2em;
  z-index: 1000;
}