.tabla{
    width:100%;
}
.tabla input{
    width:100%;
    border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  background-color: transparent;
  border-color: #013f3f66;

}
.tabla input:hover{
    border-color: #215f5f;
  outline: none;
  }
.tabla input:focus{
  border-color: #518f8f;
outline: none;
}



.delete-btn {
    display: none;
    color: #ff7777;
    cursor: pointer;
}
tr:hover .delete-btn {
    display: inline;
}

h2,th,input,button, div, label{
    color: darksalmon;
}
body{
    background-color: darkslategrey;
}
button, tr input{
    background-color: #013f3f;
}

.xx-large{
    font-size: xx-large;
}

.x-large{
    font-size: x-large;
}

@font-face {
      font-family: "Monofur Nerd Font";
      src: url("/fonts/Monofur/MonofurNerdFont-Regular.ttf") format("truetype");
      font-weight: normal;
      font-style: normal;
    }

body{
    font-family: Monofur Nerd Font;
    color:darksalmon;
}
#home h1{
    border: solid;
    border-color: darksalmon;
    border-width: 2px;
    border-radius: 5px;
    max-width: 20em;
}
a:link{
    color:darksalmon;
    text-decoration: none;
}
a:visited{
    color: darksalmon;
    text-decoration: none;
}


.tag-list{
    margin-top: 3em;
    display:flex; 
    flex-direction:column; 
    align-items:start;
    font-size: x-large;
    max-width: fit-content;
}

.tag-list > div{
    display:flex; 
    flex-direction:row; 
    align-items:center;
    justify-content: flex-start;
}

#buttons{
    position: absolute;
    top: 2em;
    left:calc(50% - 4em)
}

input[type="checkbox"]{
    appearance: none;       /* remove native style */
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 16px;
  height: 16px;
  border: 2px solid #555;
  border-radius: 3px;     /* optional: rounded corners */
  background-color: #013f3f; /* default background */
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: darksalmon; /* green when checked */
}
