@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  font-family: 'PT Sans', sans-serif;
}
body {
  font-size: 18px;
}
h2 {
  text-align: center;
  margin: 16px 0;
  color: #a8008f;
}
a {
  text-decoration: none;
  color: #00a797;
}
p {
  margin: 8px 0;
}
input {
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 18px;
  border: 1px solid #999;
  flex: 1;
}

input:focus {
  outline: 1px solid #4dff8e;
}

.container {
  width: 95%;
  max-width: 450px;
  margin: 16px auto;
  padding: 16px;
  border-radius: 5px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.27), 2px 3px 5px rgba(0, 0, 0, 0.17);
}
.btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  text-align: right;
}
.btn {
  font-size: 15px;
  padding: 5px 12px;
  outline: none;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: #fafafa;
  transition: all 0.23s ease-in-out;
}
.btn-small {
  font-size: 13px;
}
.btn:hover {
  scale: 1.07;
}
.btn-primary {
  border: 1px solid #0080ff;
  color: #0080ff;
}
.btn-info {
  border: 1px solid #04873d;
  color: #04873d;
}
.btn-danger {
  border: 1px solid #da471e;
  color: #da471e;
}
.btn:disabled {
  cursor: inherit;
  opacity: 0.5;
}
.form-group {
  display: flex;
  margin: 8px 0;
  flex-direction: column;
  gap: 8px;
}
.input-group {
  display: flex;
  margin: 8px 0;
  gap: 8px;
}
.details-table {
  min-width: 100%;
  font-size: 14px;
  text-align: left;
  border-collapse: collapse;
}
.details-table th,
td {
  padding: 8px 4px;
}
.details-table .text-right {
  text-align: right;
}
.details-table tr th,
tr:not(:last-child) td {
  border-bottom: 1px solid #aaa;
}
.border-none tr th,
.border-none tr td {
  border: none;
  padding: 12px 4px;
}
@media (min-width: 450px) {
  .details-table {
    font-size: 18px;
  }
  .btn {
    padding: 8px 20px;
  }
}
