/* General CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header CSS */
header {
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

#counterContainer {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  justify-content: space-around;
  text-align: center;
  height: 80vh;
  align-content: center;
  flex-wrap: nowrap;
}

#clickArea {
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.5em;
  height: 100vh;
}

#clickArea:active {
  background-color: #0056b3;
}

#counter {
  margin-top: -25px;
}

.counterBox {
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.counterBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.counterBox p {
  margin: 0;
  font-size: 1.1em;
  color: #555;
}

.counterBox span {
  display: block;
  font-size: 2.5em;
  color: #007bff;
}

#dayWiseDataContainer {
  /* width: 90%; */
  margin-top: 20px;
  overflow-x: auto;
}

#dayWiseDataContainer table,
#dayWiseDataContainer th,
#dayWiseDataContainer td {
  border: 1px solid #ddd;
  text-align: center;
}

#dayWiseDataContainer th {
  background-color: #007bff;
  color: white;
}

#dayWiseDataContainer td {
  background-color: #f9f9f9;
}

.col-md-4 { margin-bottom: 20px;}

/* Added animation styles */
@keyframes insetAnimation {
  0% {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

.animate {
  animation: insetAnimation 0.5s;
}

#blogSection ul {
  padding-left: 0;
  list-style: none;
}

#blogSection li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding-left: 30px;
}

#blogSection li:last-child {
  border-bottom: none;
}

#blogSection li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; /* Adjust based on the actual size of your image */
  height: 20px; /* Adjust based on the actual size of your image */
  background-image: url('https://japacounter.com/favicon.png');
  background-size: cover;
}

#blogSection a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

#blogSection a:hover {
  text-decoration: underline;
}
