@import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap");
h1 {
  color: pink;
}

h2 {
  color: #febbcc;
}

.form-input-section h2 {
  color: lightgray;
}

label {
  color: lightgray;
  margin-left: 10px;
}

body {
  font-family: "Tilt Neon", sans-serif;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  background-color: #ffeecc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 80px;
  padding-right: 80px;
}

#form-search {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

#search-title-input {
  width: 350px;
  margin: 0px;
}

#search-btn {
  width: 40px;
  height: 40px;
  background-color: #ffddcc;
  color: white;
  background-image: url("./assets/search.png");
  background-repeat: no-repeat;
  background-position: center;
}

[type="text"],
[type="number"],
[type="search"] {
  width: 100%;
  outline: none;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid #ffddcc;
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 20px;
}

.tahun {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.selesai-baca {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.selesai-baca label {
  color: gray;
  display: flex;
  flex-shrink: 0;
}

.selesai-baca input {
  accent-color: #ffeecc;
}

.tahun-status-submit button {
  display: flex;
}

.tahun-status-submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

::placeholder {
  color: #febbcc;
}

:focus {
  border: 2px solid #ffeecc;
}

button {
  background-color: #ffeecc;
  color: gray;
  border: 1px solid #ffeecc;
  border-radius: 20px;
  padding: 15px;
  cursor: pointer;
}

.check-button {
  width: 40px;
  height: 40px;
  background-color: #ffddcc;
  color: white;
  background-image: url("./assets/done.png");
  background-repeat: no-repeat;
  background-position: center;
}

.trash-button {
  width: 40px;
  height: 40px;
  background-color: lightcoral;
  color: white;
  background-image: url("./assets/trash.png");
  background-repeat: no-repeat;
  background-position: center;
}

.undo-button {
  width: 40px;
  height: 40px;
  background-color: lightgreen;
  color: white;
  background-image: url("./assets/undo.png");
  background-repeat: no-repeat;
  background-position: center;
}

.shadow {
  box-shadow: 0 1px 1px rgba(154, 160, 185, 0.05),
    0 5px 10px rgba(166, 173, 201, 0.2);
  padding: 10px;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
}

.inner h2 {
  color: gray;
  padding: 0;
  margin: 5px;
}

.inner p {
  color: lightgray;
  padding: 0;
  margin: 5px;
}

main {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 5rem;
}

.form-input-section {
  display: flex;
  flex-direction: column;
  flex: 2;
}

.shelf-aside {
  background-color: #ffeecc;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

#belum-baca-rak {
  display: flex;
  flex: 1;
}

#sudah-baca-rak {
  display: flex;
  flex: 1;
}

.book_shelf {
  display: flex;
  flex-direction: column;
}

footer {
  padding: 20px;
  background-color: #ffeecc;
  color: #febbcc;
}
