body {
  margin: 0;
  padding: 50px 20px;
  min-height: 100vh;
  box-sizing: border-box;
  font-style: oblique;
  background-image: url(background-pic.jpg);
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#logIn-container{
  border-radius: 15pt;
  box-shadow: 10px;
  font-size: large; 
  font-style:  normal;
  background-color: rgb(126, 244, 103); 
  margin: 100px;
  padding: 25px;
}   
#inputPass{
  border-radius: 10px;
  height: 25px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
  background: rgb(126, 244, 103);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: scale(1.0);
  transition: transform 0.8s ease-in-out;
}
.show{
  margin: 10px;
}
.table-container {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
  background: rgb(126, 244, 103);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: scale(1.0);
  transition: transform 0.8s ease-in-out;
  text-align: center;
}
/*.container:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  transition: transform 0.8s ease;
}
.table-container:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  transition: transform 0.8s ease;
}*/
.yiddish-word {
  margin-bottom: 25px;
  font-style: normal;
}
.form-area {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid rgb(129, 18, 184);
  border-radius: 10px;
  margin-top: 10px;
}
.form-group {
  font-style: normal;
  margin-bottom: 10px;
}
.input-box {
  font-size: 1em;
  background-color: rgb(146, 217, 245);
  border-radius: 10px;
  margin-bottom: 10px;
  height: 25px;
  width: auto;
}
.submit-button {
  background-color: blueviolet;
  border-radius: 30px;
  margin-bottom: 10px;
  height: 30px;
}
.submit-button:hover {
  background-color: rgb(162, 162, 80);
}
.show {
  background-color: blueviolet;
  border-radius: 10px;
  margin-bottom: 50px;
  height: 40px;
}
.show:hover{
background-color: rgb(162, 162, 80);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 50px;
}
table,
th,
td {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: blueviolet;
  font-style: normal;
  font-family: 'Inter', sans-serif;
}
th {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 16px;
}
td {
  color: white;
}
th,
td {
  padding: 12px 16px;
  text-align: center;
}
tr.done {
  background-color: #221e1f;
  text-decoration: line-through;
  opacity: 0.7;
}
.deleteBtn{
  border-radius: 30px;
  background: rgb(126, 244, 103);
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
   
}
.deleteBtn:hover{
  background-color: red;
    transform: scale(1.5);
    transition: transform 0.8s ease;
      animation: blinker 0.5s steps(1) infinite;
}
.copyright {
  color: rgb(20, 20, 18)
}
#comment-input{
  display: none;
}
.commentBtn{
  /* ── Button that looks like a text link ── */
    box-shadow: none;
    background: none;
    border: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: underline;
    padding: 5px;
}
.commentBtn:hover{
  color: blueviolet;
}
.style-btn{
  display: flex;
  padding: 5px;
  background-color: blueviolet;
  border-radius: 5px;
}
.style-btn:hover{
  background-color: rgb(162, 162, 80);
    border-radius: 5px;
}