/*  Icon Circle  */
.circle-icon-container {
  width: 100px;
  height: 100px;
  background-color: #285EF6;
  border-radius: 50%;
  display: contain; /* or text-align: center; line-height: 100px; */

  justify-content: center;
  align-items: center;
}

/* unvisited link */
a:link {
  color: #6c6c6c;
  display: block;
  width: 100%;
  height: 100%;
}

/* visited link */
a:visited {
  color: #6c6c6c;
  display: block;
  width: 100%;
  height: 100%;
}

/* mouse over link */
a:hover {
  color: #285EF6;
  display: block;
  width: 100%;
  height: 100%;
}

/* selected link */
a:active {
  color: #285EF6;
  display: block;
  width: 100%;
  height: 100%;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 0px 40px 4px #6c6c6c;
    border:solid white 0px;
    border-radius:20px;
/*    padding: 30px;  */
    border-spacing: 10px;
/*    background-image: linear-gradient(white, #003a5c4A); */
    }

    /* Styles for larger screens */
.responsive-table th ,
.responsive-table td {
      border: 1px solid #285ef6;
      border-radius:10px;
      padding: 20px;  /* This is for inside the cells */
      width: 33.3%;
      text-align: center;
    }

    /* Media query for mobile devices */
    @media screen and (max-width: 800px) {
      .responsive-table,
      .responsive-table thead,
      .responsive-table tbody,
      .responsive-table th,
      .responsive-table td,
      .responsive-table tr {
        display: block; /* Make all table elements behave like block-level elements */
      }

.responsive-table thead tr {
        position: absolute; /* Hide the original table headers visually */
        top: -9999px;
        left: -9999px;
      }

.responsive-table tr {
        margin-bottom: 0px; /* Add spacing between "rows" (now blocks) */
        border: 0px solid #FFFFFF; /* Add a border to each block */
      }

.responsive-table td {
        border: 1px solid #285ef6;
        border-radius:10px;
        /*   border: none; /* Remove individual cell borders */
        position: relative;
        padding-left: 10px; /* Make space for the pseudo-element label */
        margin-top: 10px; /* Add spacing between "rows" (now blocks) */
        margin-bottom: 20px; /* Add spacing between "rows" (now blocks) */
        margin-left: 10px; /* Add spacing between "rows" (now blocks) */
        margin-right: 10px; /* Add spacing between "rows" (now blocks) */
        width: auto;
      }

