* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  color: rgb(251, 251, 252);
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
  padding-bottom: 60px;
}

p {
  margin: 0px;
  margin-top: 12px;
}

#app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 16px;
}

.title {
  font-size: 1.5em;
  text-align: center;
}

.card {
  border-radius: 12px;
  background-color: rgba(4, 97, 151, 0.5);
  border: 1px solid rgba(0, 147, 233, 1);
  padding: 12px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.legend-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.legend-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.legend-color {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background-color: red;
  border-radius: 2px;
}

.legend-color.green {
  background-color: green;
}

.paikat-object {
  border-radius: 8px;
  max-width: 1000px;
}


a {
  display: block;
  padding-top: 4px;
  color: #e4ebee;
  text-decoration: none;
  margin-bottom: 12px;
}

input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 15px;
  width: 300px;
  font-size: 16px;
  margin-bottom: 8px;
}

input:first-of-type {
  margin-top: 4px;
}

input:focus {
  outline: none;
  border-color: #6f42c1;
  box-shadow: 0 0 5px rgba(0, 147, 233, 1);
}

input::placeholder {
  color: #999;
}

button {
  background-color: #6f42c1;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #59349b;
}

button {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
}

th {
  min-width: 80px;
}