.tools {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 111.6px;
  gap: 20px;
}

.tools a {
  width: calc(100% - 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 35px 15px;
  font-size: 17px;
  color: #000;
  font-family: 'Noto Sans', sans-serif;
  text-decoration: none;
  text-align: center;
}

.tools a:hover {
  color: #1a73e8;
  box-shadow: 0 2px 2px #00000024, 0 3px 1px -2px #0000001f, 0 1px 5px #00000033;
  border: 0;
}

.entries-container {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entries-container > div {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 2px #00000024, 0 3px 1px -2px #0000001f, 0 1px 5px #00000033;
  border-radius: 7px;
  padding: 10px;
  cursor: pointer;
}

.entries-container > div p {
  color: #000;
  font-weight: 500;
  font-family: 'Noto Sans', sans-serif;
  word-break: break-word;
  text-align: center;
}

.entries-container > div svg {
  min-width: 27px;
  max-width: 27px;
  min-height: 27px;
  max-height: 27px;
  justify-self: end;
  padding: 5px;
}

.entries-container > div svg:hover {
  color: #1a73e8;
}

.calc {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calc > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.calc label {
  font-family: 'Noto Sans', sans-serif;
}

.calc > div input, .calc > div select {
  outline: none;
  border: 1px solid #ccc;
  padding: 5px;
}

.calc > div > select {
  font-size: 16px;
}

.calc .interest {
  display: flex;
  gap: 5px;
}

.calc .interest input {
  flex: 1;
}

.calc input:focus, .calc select:focus {
  border: 1px solid #1a73e8;
}


.calc button {
  width: fit-content;
  background-color: #1a73e8;
  cursor: pointer;
  padding: 9px 20px;
  border: 0;
  color: #fff;
  font-size: 16px;
}

.calc button:hover {
  background-color: #0d63d3;
}

.calc p {
  word-wrap: break-word;
}