/* calculator */
.numberOfcalculator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 8px;
  column-gap: 8px;
}
.numButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
  border: 0;
  color: black;
  transition: all 0.2s ease-in-out;
}

.numButton:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.numButton:active {
  transform: scale(0.95);
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.3);
}

.emoji {
  max-width: 50px;
}
.operatorButton {
  background-color: #324d3e;
  color: #ffffff;
}

.calcResult {
  margin: 10px;
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
  border: none;
  outline: none;
  border-radius: 10px;
  text-align: right;
  color: #324d3e;
  font-weight: 600;
}
/* right section */

.containerElement {
  display: flex;
  flex-direction: column;
}
/* .containerElement, */
input.costInput,
#salary {
  border: none;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: rgba(43, 67, 54, 0.1);
}

.emojiInput {
  font-size: 20px;
}
.saleryElement {
  color: #324d3e;
  font-size: 24px;
  font-weight: bold;
}
/* bottom section */
.setMoney img {
  max-width: 100px;
}
.setMoney {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
.saveMoney {
  padding: 18px 30px 18px 30px;
  background-color: #324d3e;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.saveMoney:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.saveMoney:active {
  transform: scale(0.95);
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.3);
}
.saveMoneyPeragraf {
  color: #324d3e;
  font-size: 24px;
  font-weight: bold;
}

/* Change button */
.edit {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 8px;
}

#change {
  background-image: url(../photo/pencil.svg);
  background-color: #8ea48b;
}
#add {
  background-image: url(../photo/plus.svg);
  border: 1px solid #324d3e;
}
#trash {
  background-image: url(../photo//trash.svg);
  border: 1px solid #324d3e;
}
.edit button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
}
#add:hover,
#change:hover,
#trash:hover {
  cursor: pointer;
  transform: scale(1.05);
}
#add:active,
#change:active,
#trash:active {
  transform: scale(0.95);
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.3);
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 30px;
  color: #324d3e;
  margin-bottom: 40px;
  margin-top: 35px;
  letter-spacing: 1.2px;
}
