/* GLOBAL STYLING */
* {
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}
body {
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex-direction: column;
  overflow-x: hidden;
}

/* BUTTON TWO STYLING */
.btn-two {
  color: lime;
  transition: all 0.5s;
  position: relative; 
}
.btn-two span {
  z-index: 2; 
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; 
}
.btn-two::before, .btn-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
}
.btn-two:hover::before { transform: rotate(-45deg); background-color: rgba(255,255,255,0);}
.btn-two:hover::after { transform: rotate(45deg); background-color: rgba(255,255,255,0);}

/* ALL HEADING */
.all-heading {
  line-height: 30px;
  height: 30px;
  text-align: center;
  width: 150px;
  cursor: pointer;
  margin: 40px auto;
}

/* GENERIC BUTTON */
.btn {
  position: relative;
  background: #444;
  width: auto;
  height: auto;
  color: #fff;
  text-decoration: none;
  font-size: 8px;
  letter-spacing: 0rem;
  padding: 10px;
  transition: 0.5s;
}   
.btn:hover {
  letter-spacing: 0rem;
  background: var(--color);
  color: var(--color);
  box-shadow: 0 0 50px 10px var(--color);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #27282c;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn i {
  position: absolute;
  inset: 0;
  display: block;
}
.btn i::before, .btn i::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 3px;
  background: #27282c;
  border: 1px solid var(--color);
  transform: translateX(-50%);
  transition: 0.5s;
}
.btn i::before { top: -3.5px; left: 80%; }
.btn i::after { bottom: -3.5px; left: 20%; }
.btn:hover i::before { left: 20%; width: 10px; }
.btn:hover i::after { left: 80%; width: 5px; }

/* SEARCH CONTAINER STYLING (PREMIUM, PROFESSIONAL) */
#search-container {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
}
#search-container input[type="text"] {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: all 0.4s ease;
  text-transform: lowercase;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}
#search-container input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: lowercase;
}
#search-container input[type="text"]:focus {
  border-color: lime;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

/* BUTTON CONTAINER */
.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  justify-content: center;
}

/* FOCUS BOX EFFECT */
.box-css {
  border: 10px solid transparent; 
  transition: border-color 0.3s, box-shadow 0.3s; 
}
.box-css:focus {
  border-color: green; 
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* GLOW EFFECT */
.glow {
  font-size: 0.8em;
  color: rgba(255, 255, 255, .1);
  background: -webkit-linear-gradient(left, red, orange, yellow, green, blue, indigo, violet);
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  animation-name: colorchange;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes colorchange {
  0% { background-position: right 0px bottom 0px; }
  100% { background-position: right 10em bottom 0px; }
}

/* FOOTER */
.report-footer{
	background-color: black;
  position: fixed;
  bottom: 0;
  display: block;
  width:100%;
}
