@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Kalnia+Glaze:wght@100..700&display=swap');

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
  /* Modal Content/Box */
.modal-content {
  background-color: #EAF7FB;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 30%; /* Could be more or less, depending on screen size */
}

#editAmount {
  margin-bottom: 20px;
}
  
  /* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
  
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.editB {
  height: 20px;
  width: 20px;
}
  
body, h1, h2, h3, h4, h5, h6, p {
  font-family: 'Courier New', Courier, monospace;
}

button {
  margin-bottom: 0px;
  background-color: #016273;
}



@media (prefers-color-scheme:dark) {
  :root {
      color-scheme: dark;
      --bg: #212121;
      --accent-bg: #2b2b2b;
      --text: #dcdcdc;
      --text-light: #ababab;
      --accent: #016273;
      --accent-hover: #2995A7;
      --accent-text: var(--bg);
      --code: #f06292;
      --preformatted: #ccc;
      --disabled: #111;
  }
}

@media (prefers-color-scheme:dark) {
  :root {
      color-scheme: dark;
      --bg: EAF7FB;
      --accent-bg: #2b2b2b;
      --text: #dcdcdc;
      --text-light: #ababab;
      --accent: #016273;
      --accent-hover: #2995A7;
      --accent-text: var(--bg);
      --code: #f06292;
      --preformatted: #ccc;
      --disabled: #111;
  }
}

ul {
    list-style-type: none;
}

.expense-item {
  background-color: #EAF7FB;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  color: #1D1D1D;
  font-family: "Inria Serif";
  display: flex;
  align-items: center;
  gap: 5px;
}

.expense-item {
  width: max-content;
  
}

.images {
  background-color: #016273;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.images > img {
  height: 30px;
  width: 30px;
}

.mText {
  color: #1D1D1D;
}

input#editAmount {
  color: #1D1D1D;
}

select#formDrop {
  color: #1D1D1D;
}

.loginBody {
  display: flex;
  height: 100%;
  align-content: center;
  justify-content: center;
}

.login {
  background-color: #2b2b2b;
  height: 200px;
  width: 200px;
}