
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome {
font-size: 16px;
}

.menu {
  list-style: none;
  display: none; /* Initially hidden */
  flex-direction: column; /* Stack menu items */
  width: 100%;
  text-align: center;
  background-color: #fff;
  position: absolute;
  top: 60px; /* Just below the header */
  left: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 0; /* Remove padding from the <ul> */
  z-index:999;
}

.menu ul {
  width: 100%;
}

.menu li {
  margin: 0; /* Remove any margin from <li> */
  padding: 0; /* Remove padding from <li> */
}

.menu li a {
  color: #333; /* Dark text for links */
  text-decoration: none;
  padding: 15px; /* Set uniform padding for the links */
  display: block;
  border-bottom: 1px solid #eee; /* Separator between items */
}

.menu li a:hover {
  background-color: #f1f1f1; /* Slight hover effect */
  color: #007BFF; /* Change text color on hover */
}

.menu-icon {
  display: block;
  font-size: 25px;
  color: #333; /* Dark icon color */
  cursor: pointer;
}

@keyframes highlightFade {
  0% {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  100% {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid transparent;
  }
}

.highlight-on-load {
  padding: 8px;
  border-radius: 4px;
  animation: highlightFade 5s ease-out forwards;
}

/* Toggle menu visibility */
#menu-toggle {
  display: none;
}

#menu-toggle:checked + .menu-icon + .menu {
  display: flex; /* Show the menu when checked */
  flex-direction: column;
}

/* Always show hamburger menu */
@media (min-width: 769px) {
  .menu {
    display: none; /* Hide the menu initially */
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
    flex-direction: column;
  }

  .menu li a {
    text-align: left;
    padding: 15px 20px;
  }
}

/* Analytics Date Filter CSS */

.pvc_analytics_date-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pvc_analytics_filter-select, 
input[type="date"], 
.pvc_analytics_button {
    width: 100%;
    padding: 4px 10px;
    font-size: 14px;
}

.pvc_analytics_button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.pvc_analytics_hidden {
    display: none;
}

#pvc_analytics_customDateRange{
	margin: 10px 0px;
}

.pvc_analytics_input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
	font-size: 14px;
	margin-bottom: 6px;
}

@media (min-width: 600px) {
    .pvc_analytics_filter-select, 
    input[type="date"], 
    .pvc_analytics_button {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .pvc_analytics_filter-select {
        margin-bottom: 0.75rem !important;
    }
}

/* Analytics Date Filter CSS End*/