@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@515&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:link {
  text-decoration: none;
  color: #FFFFFF;
cursor: pointer;
}

a:visited {
  text-decoration: none;
  color: #FFFFFF;
cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: #5F30E2;
cursor: pointer;
}

a:active {
  text-decoration: none;
  color: #FFFFFF;
cursor: pointer;
}

header {
  display: flex;
  background: #5F30E2;
  float: right;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  margin: 0px;
  width: 100%;
  color: white;
  text-align-last: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 2px 2px 4px #000000;
}

.wrapper {
  padding: auto;
  display: flex;
  flex-direction: row;
  align-items: top;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  height: 100%;
  width: 100%;
  min-width: 200px;
  background-color: #6e6c74;
  background-image: url("../assets/wood_gb.jpg");
  box-shadow: 2px 2px 4px #000000;
}

.wrapper .container {
  min-width: 200px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #b3aec4;
  background: rgba(56, 48, 42, 0.323);
  padding: 20px;
  flex-grow: 1;
  height: fit-content;
  margin: 8px;
  border-radius: 20px;
}

.item {
  border-radius: 16px;
  margin-top: 8px;
  padding: 12px 12px 12px 24px;
 	padding: 0px 0px 0px 12px;
  background: white;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.item>.inner h2 {
  margin-bottom: unset;
}

.item>.inner p {
  margin-top: 5px;
}


table {
	border: 1px solid #96D4D4;
	border-collapse: collapse;
	width: 80%;
}

table {
	border: 1px solid #96D4D4;
	border-collapse: collapse;
	margin:0 auto;
	width: 80%;
}

.table2 {
	border: 1px solid #96D4D4;
	border-collapse: collapse;
	width: 80px;
}
th, td {
	border: 1px solid #5F30E2;
	border-collapse: collapse;
	text-align: left;
	text-align: center;
	padding: 8px;
}
.th2, .td2 {
	border: 1px solid #5F30E2;
	border-collapse: collapse;
	text-align: center;
	padding: 8px;
}
tr:nth-child(odd) {
	background-color: #5F30E2;
	background-color: #b3aec4;
  background: rgba(56, 48, 42, 0.323);
}
.tr2:nth-child(odd) {
	background-color: #5F30E2;
	background-color: #b3aec4;
 	background: rgba(56, 48, 42, 0.323);
}

.check-button {
  background: url('../assets/check_outline.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
}

.check-button:hover {
  background: url('../assets/check_fill.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.trash-button {
  background: url('../assets/trash_outline.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
}

.trash-button:hover {
  background: url('../assets/trash_fill.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.edit-button {
  background: url('../assets/edit_outline.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
}

.edit-button:hover {
  background: url('../assets/edit_fill.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.undo-button {
  background: url('../assets/undo_outline.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
}

.undo-button:hover {
  background: url('../assets/undo_fill.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.check-button:focus,
.trash-button {
  outline: none;
}

.button-menu {
  background-color: rgb(146, 101, 250);
  color: white;
  float: right;
  padding: auto;
  margin-left: 12px;
  position: static;
  text-align: center;
  cursor: pointer;
  width: 150px;
  border-radius: 5px;
  align-items: center;
}

.tooltip {
  background-color: rgb(146, 101, 250);
  color: white;
  float: right;
  padding: auto;
  margin-left: 12px;
  position: static;
  height: fit-content;
  cursor: pointer;
  width: 130px;
  border-radius: 5px;
  align-items: center;

  position: relative;
  display: flexbox;
  border-bottom: 1px dotted black;
  text-align: center;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgb(96, 197, 101);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

input[type=text],
input[type=number],
input[type=password],
input[type=search] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  outline: none;
}

/*
.input[type=text],
input[type=number],
input[type=password],
input[type=search]:valid {
  border-bottom: 1px solid #5F30E2;
}
*/


.menu-top {
	display: flex; 
	flex-direction: row; 
	align-content: center;
}



button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
}

button:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.container {
  padding: 4px;
  width: 40px;
  display: flex;
  flex-direction: column;
}

.container-modal {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

.animate {
  width: 50%;
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0)
  }
  to {
    -webkit-transform: scale(1)
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}


@media only screen and (max-width: 800px) {

  .header {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
  }

  .wrapper {
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .wrapper .container {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .list-item {
    width: 100%;
  }

  .form {
    width: 100%;
  }

  .form-filter {
    width: 100%;
  }

  .modal-content {
    width: 90%;
  }

	.menu-top {
      display: flex; 
      flex-direction: column; 
      align-content: center;
	}

.table {
	width: 98%;
}

.table2 {
	width: 98%;
}

}