body {
    font-family: 'Rubik', sans-serif;
    background-color: #0c6359;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  /* margin-bottom: 100px; */
  text-align: right;
  /* background-color: rgba(255, 255, 255, 0.8); */
  backdrop-filter: blur(8px);
  /* color: white; */
  position: sticky;
  top: 0;
}

header img {
  margin-left: 10px;
  align-items:right;
}

label {
  display: flex;
  align-items: center;
  /* margin-bottom: 100px; */
  text-align: right;
  /* background-color: rgba(255, 255, 255, 0.8); */
  backdrop-filter: blur(8px);
  /* color: white; */
  position: sticky;
  top: 0;
    margin-right: 4px;
}

label img {
  margin-left: 10px;
  align-items:right;
}

des {
  display: flex;
  align-items: center;
  text-align: right;
  position: sticky;
  top: 0;
    margin-right: 4px;
}

des img {
  margin-left: 10px;
  align-items:right;
}

#hiddenElement {
    /* height: 25vh; */
    width: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease;
}

.hidden {
    display: none;
}

.container {
    border-radius: 20px;
    padding: 20px;
    width: 96%;
    max-width: 400px;
    /* margin-top: 20px; */
    transition: margin-top 0.5s ease;
}

#results {
    margin-top: 20px;
}

.result-item {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    /* background-color: #fff; */
    background-color: #247269;
    color: #fff;
}

.result-item strong {
    font-size: 1.5em;
    display: block;
    margin-bottom: 10px;
}

/*#searchInput:invalid {
    border: 2px solid #ff0000;
}

#searchInput:focus {
    border: 2px solid #000;
}*/

#searchInput:focus {
    outline: none;
    border: 1px solid #fff;
}

#searchBox {
    display: flex;
    align-items: center;
}

#searchInput {
    font-family: 'Rubik', sans-serif;
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    margin-right: 5px;
    font-size: 16px;
    color: #fff;
    background-color: #247269;
    border: 0 solid #fff;
}

#searchInput::placeholder {
  color: #fff;
}

#searchInput,
#searchInput:focus {
  color: #fff;
}

#searchButton {
    /* font-size: 1.5em; */
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: #fff; */
    background-color: #247269;
    margin-right: 4px;
}
#searchButton:hover {
  background-color: #2b887d;
}

#searchButton i {
    color: #fff;
    /* margin-right: 5px; */
}

#editTxt:focus {
    outline: none;
    border: 1px solid #fff;
}

.inputField:focus {
    outline: none;
    border: 1px solid #fff;
}

.editBox {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.inputField {
    font-family: 'Rubik', sans-serif;
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    margin-right: 5px;
    font-size: 16px;
    color: #fff;
    background-color: #247269;
    border: 0 solid #fff;
}

.inputField::placeholder {
    color: #fff;
}

.inputField,
.inputField:focus {
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }
}

.note {
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

#addButton {
  font-family: 'Rubik', sans-serif;
  padding: 10px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  background-color: #247269;
  border: 0 solid #fff;
  display: block;
  margin: 0 auto;
}
#addButton:hover {
  background-color: #2b887d;
}
#addButton i {
  margin-right: 2px;
}
.bicon {
  margin-right: 4px;
}

#back {
    font-family: 'Rubik', sans-serif;
    margin-top: 20px;
    border-color: transparent;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: #247269;
    color: #fff;
}
