#form-errors {
    color: red;
  }

table.my-table {
    border-spacing: 0 10px;
}
    
.nav-sidebar .nav-header {
      padding: 0.5rem !important;
      margin-top: 0 !important;
    }
.profile-image-wrapper {
      width: 60px; /* Adjust the width and height as per your requirement */
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
  }
  
    .profile-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
  
    .sidebar-image-wrapper {
      width: 35px; /* Adjust the width and height as per your requirement */
      height: 35px;
      border-radius: 50%;
      overflow: hidden;
  }
  
    .sidebar-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .month-year-widget {
      display: inline-block;
      margin-right: 10px;
  }
  .month-year-widget select {
      width: 80px;
  }
  .yearmonthwidget .row {
    display: flex;
    justify-content: space-between;
}

.yearmonthwidget .col {
    padding: 0 5px;
}


    .large-link {
          font-size: 24px;  /* Change this value to adjust the size */
      }
      .large-badge {
          font-size: 15px;  /* Change this value to adjust the size */
      }
      .lower-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      padding-top: 10px;
  }
  .bell {
          animation: bell 1s infinite;
      }
  
      @keyframes bell {
          0% { transform: rotate(0deg); }
          10% { transform: rotate(30deg); }
          20% { transform: rotate(-20deg); }
          30% { transform: rotate(20deg); }
          40% { transform: rotate(-10deg); }
          50% { transform: rotate(10deg); }
          60% { transform: rotate(-5deg); }
          70% { transform: rotate(5deg); }
          80% { transform: rotate(-2deg); }
          90% { transform: rotate(2deg); }
          100% { transform: rotate(0deg); }
      }
    .lock-icon {
        position: absolute;
        top: 0;
        right: 0;
        /* background-color: rgba(0,0,0,0.3); */
        color: #fff;
        padding: 15px;
        border-radius: 50%;
      }
    .unlock-icon {
        position: absolute;
        top: 0;
        right: 0;
        /* background-color: rgba(0,0,0,0.3); */
        color: #fff;
        padding: 15px;
        border-radius: 50%;
      }
    
      .bordered {
        border: 1px solid black;
        /* Additional border styles can be added if desired */
      }
      .custom-height {
      height: 200px; /* Adjust the height value as per your requirement */
      display: flex;
      align-items: center;
      justify-content: center;
      }
      .social-media-icons {
    display: inline-block;
  }
  .animated-text {
    animation: fade 3s ease-in-out infinite;
  }
  @keyframes fade {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    50% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(10px);
    }
  }
  .animated-texti {
    animation: slideIn 1s ease-in-out infinite;
  }

  
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-10px);
    }
    50% {
      opacity: 1;
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      transform: translateX(10px);
    }
  }
  .needs-validation .form-control:invalid {
    border-color: red;
}
.needs-validation .form-control:invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}