* {
  transition: 0.2s;
}

body {
  background-color: #282c34;
  transition: margin-left 0.2s;
  color: #d0d3d8;
}
.header {
  font-size: 7vh;
  transition: 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #d0d3d8;
}

a {
  color: #d0d3d8;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header {
    font-size: 4vh;
    transition: 0.2s;
  }
}
.transactionheader {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4vh;
  transition: 0.2s;
}
.payment-form {
  width: 50%;
  padding: 100px 20px;
}
.amount-input {
  font-size: 24px;
}

@media (max-height: 500px) {
  .header {
    font-size: 35px;
    transition: 0.2s;
  }
  .transactionheader {
    padding-top: 15px;
    transition: 0.2s;
  }
}
.expense-table table {
  border-collapse: collapse;
  width: calc(100% - 80px);
}

.expense-table th,
.expense-table td {
  padding: 15px;
  border: 1px solid #d0d3d8;
  text-align: left;
}

.centercenter {
  text-align: center;
  position: absolute;
  left: calc(50% + 80px);
  top: 50%;
  transform: translate(-60%, -50%);
}
.amount {
  font-size: 36px;
  margin: 10px 0;
}
.amount-input {
  font-size: 36px;
  border: none;
  background: none;
  text-align: center;
  color: #949699;
}

.who {
  font-size: 24px;
  margin: 10px 0;
  background-color: #3b4252;
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: #949699;
}

.who:focus {
  outline: none;
  scale: 1.2;
}

.amount-input:focus {
  outline: none;
  scale: 1.2;
}

::placeholder {
  color: #949699;
}

.pay-button {
  background-color: #3b4252;
  color: #d0d3d8;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 24px;
  margin-top: 20px;
}

.pay-button:hover {
  background-color: #4c566a;
  scale: 1.2;
}

.circle {
  height: 100px;
  width: 100px;
  margin: auto;
  background-color: #bbb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.initials {
  font-size: 36px;
  color: rgb(51, 45, 45);
  font-weight: bold;
}

.cash {
  background-color: #3b4252;
  color: #d0d3d8;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 24px;
  margin-top: 20px;
}
.cash:hover {
  background-color: #4c566a;
  scale: 1.2;
}
.cash:focus {
  background-color: #4c566a;
  scale: 1.2;
}

.submit {
  background-color: #3b4252;
  color: #d0d3d8;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 24px;
  margin-top: 20px;
}

.submit:hover {
  background-color: #4c566a;
  scale: 1.2;
}
.cash:focus {
  outline: none;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.page-button {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background-color: #3b4252;
  color: #cfcfcf;
  font-size: 16px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.page-button:hover {
  background-color: #4c566a;
  scale: 1.2;
  transition: 0.2s;
}

.page {
  width: 60px;
  text-align: center;
}
.page:focus {
  outline: none;
  scale: 1.2;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
