* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.15s ease-in-out;
  scroll-behavior: smooth;
}

/* BODY STYLE START */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #6a93cb;
  background-image: linear-gradient(315deg, #6a93cb 0%, #a4bfef 74%);
}
/* BODY STYLE END */

/* HEADER STYLE START */
header {
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem;
  box-shadow: 0 0 20px 1px #111,
  0 0 5px 2px #eee;
}

header h1 {
  margin-bottom: 1rem;
  text-shadow: 0 0 10px black;
}
header h2 {
  text-shadow: 0 0 10px black;
}
/*HEADER STYLE END*/

/* BODY STYLE START */
.container {
  background-color: #7f53ac;
  background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 5rem;
  margin-bottom: 2rem;
  width: 70%;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 5px 1px #111,
  0 0 5px 2px #eee;
  position: relative;
}

.container::before {
  content: '';
  position: absolute;
  top: -55px;
  left: 20px;
  width: 5px;
  height: 100px;
  border-radius: 40px;
  background-color: rgb(250, 59, 116);
  transform: rotateZ(90deg);
  animation: animate 5s ease-in-out infinite;
}

@keyframes animate {
  0%{
    left: 5%;
  }
  50%{
    left: 95%;
  }
  100%{
    left: 5%;
  }
}

table {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 10px;
}

table thead {
  font-size: 1.2rem;
  font-weight: bold;
}

table tbody {
  color: white;
}

table tr td{
  border-bottom: 2px solid #ccc;
  padding: 5px;
}

table tbody .box {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}

table tbody .box label{
  margin: 0 0.8rem;
}

table tbody .box img {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
}

table tbody tr:hover {
  background-color: #111;
}

.qualify-green::after {
  content: "";
  background-color: #81D6AC;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  border-radius: 5px;
}

.qualify-red::after {
  content: "";
  background-color: #B2BFD0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  border-radius: 5px;
}

.notqualify-red::after {
  content: "";
  background-color: #FF7F84;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(194, 168, 162);
  border-radius: 25px;
  transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(247, 107, 72);
}
/* BODY STYLE END*/

/* LARGE SCREEN STYLE START */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 90%;
  }
}
/* LARGE SCREEN STYLE END */

/* MOBILE SCREEN STYLE START */
@media (max-width: 767px) {
  .container {
    width: 95%;
    padding: 5px;
    margin-top: 2rem;
  }
  table tbody .box {
    font-size: 0.8rem;
  }
  table tr td {
    border-bottom: 2px solid #ccc;
    padding: 0px;
    font-size: 0.5rem;
  }
  table tbody .box img {
    width: 20px;
    height: 20px;
  }

  header h1 {
    font-size: 1.2rem;
  }
  header h2 {
    font-size: 1rem;
  }
}
/* MOBILE SCREEN STYLE END */

/* ANIMATION START */

.loader {
  position: relative;
  width: 650px;
  height: 500px;
  border-radius: 50%;
  background-color: black;
  background-image: url("img/Premier_League-Logo.wine.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: anime 3s linear infinite, anime2 3s linear infinite;
}

.loader img {
  width: 100%;
}

@keyframes anime {
  0% {background-color: black;} 100% {background-color: white;}
}

@keyframes anime2 {
  0%{border-radius: 0;} 100%{border-radius: 50%;}
}

/* ANIMATION END */