@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

.navcolor{
    background-color: #06082f;
}
.subnav{
    background-color: #1e81b0; 
}
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures the navbar stays on top of other elements */
  width: 100%;
}
.text-center{
  font-weight: 500;
  color: #000000;
  margin-bottom: 50px;
  
}
.poppins{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  
  font-style: normal;
}

/* dash board box */
.dashboard-box, .dashboard-textbox {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* background-color: #8da7bd;  */
  background-color: #a2c5e4;
  /* background-color: #94bbdd;  */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover Zoom-In Effect */
.dashboard-box:hover, .dashboard-textbox:hover {
  transform: scale(1.05); /* Zoom effect */
  background-color: #37699b; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
/* Text and Icon Styling */
.dashboard-box h1, .dashboard-textbox h1 {
  font-size: 3rem;
  margin-bottom: 0;
}
  /* Sky blue hover effect for the notification button */
.notification-btn:hover {
    background-color: skyblue; /* Sky blue background on hover */
    transform: scale(1.1); /* Zoom in effect */
    transition: transform 0.3s ease; /* Smooth transition */
}

/* Red hover effect for the sign-out button */
.signout-btn:hover {
    background-color: rgb(210, 24, 24); /* Red background on hover */
    transform: scale(1.1); /* Zoom in effect */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

/* Ensure smooth transition for all states */
.btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* dash board box */
 .dashboard-box {
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .user-icon, .multi-user-icon {
      font-size: 48px;
      margin-bottom: 10px;
    }
    /* .active-user-box {
      background-color: skyblue;
    }
    .registered-user-box {
      background-color: green;
    }
    .registered-clients-box {
      background-color: rgb(226, 226, 3);
    }
    .unpaid-invoice-box {
      background-color: red;
    } */

    /* dashboard text box */
    .dashboard-textbox {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
      }


