@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  background-color: #Fbf5f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;

}


h1{
  margin-top: 50px;
  text-align: center;
  color: #0f0e0e;
  font-size: 40px;
  border-bottom: 2px solid #656d4a;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;

}

#csvFileInput{
  width: 350px;
  border: none;
  /* color: #eaf4f4; */
  color: #0f0e0e;
  background-image: linear-gradient(30deg, #a4c3b2, #8daa9d, #cce3de, #8daa9d); 
  border-radius: 20px;
  background-size: 100% auto;
  font-size: 20px;
  padding: 15px 10px;
  margin-top: 10px;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#csvFileInput:hover{
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: shadow 2s infinite;
  animation: shadow2 1.5s infinite;
}

@keyframes shadow2 {
  0% {
   box-shadow: 0 0 0 0 #8daa9d;
  }
 
  70% {
   box-shadow: 0 0 0 10px rgb(101 109 74 / 0%);
  }
 
  100% {
   box-shadow: 0 0 0 0 rgb(65 72 51 / 0%);
  }

}


table {
  width: 85%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}
th, td {
  padding: 12px;
  border: 1px solid #f6fff8;
  color: #0f0e0e;
}
th {
  background-color: #a4c3b2;
  font-size: 25px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;
}
tr:nth-child(even) {
  background-color: #cce3de;
 
}

td{
  font-size: 19px;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}