

.CardContainer {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* Adjust the height as needed */
  }
.CardContainer a {
 text-decoration: none;
  color: #000;
}

  .CardContainer__heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
  }

  .Card {
    width: 200px;
    min-height: 132px;
    box-sizing: border-box;
    box-shadow: 0 0 3px #bfbfbf;
    background-color: #ffffff;
    border-radius: 10px;
    transition: box-shadow 0.3s;
    margin: 20px;
    position: relative;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
  }

  .Card:hover {
    box-shadow: 0px 0px 25px #bfbfbf;
  }

  .Card__topBorder {
    height: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(90deg, rgba(112,191,68,1) 0%, rgba(27,177,231,1) 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 4s linear infinite;
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .Card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
  }

  .Card__icon {
    width: 64px; /* Adjust the size of the icons */
    height: 64px;
    margin: 5px auto 0px;
    display: block;
  }

  .Card__title {
    font-size: 18px;
    font-weight: bold;
  }

/* Media Query for responsiveness */
@media (max-width: 768px) {
  .CardContainer {
    flex-direction: column;
    align-items: stretch;
  }

  .Card {
    width: 80%; /* Adjust as needed */
    margin: 10px auto;
  }
}


#logoutDetails{
       display:none;
 }
