/* ===============================
   WRAPPER
=================================*/
.mobile-friendly-table{
  max-width:900px;
  margin:auto;
  background:#fff;
  border-radius:20px;
  padding:20px 16px 26px;
  box-shadow:0 15px 35px -18px #1d3450,0 4px 12px -6px #cbd6e6;
  border:1px solid #eef3fc;
}

/* ===============================
   HEADER
=================================*/
.mob-header{
  margin-bottom:22px;
  text-align:center;
}

.mob-header h4{
  font-size:1.7rem;
  font-weight:600;
  margin:0;
  color:#163457;
}

/* ===============================
   TABLE (DESKTOP)
=================================*/
.responsive-table{
  width:100%;
  border-collapse:collapse;
  table-layout:auto;      /* content width */
}

.responsive-table td{
  padding:14px 10px;
  vertical-align:middle;
  font-size:1.7rem;
  white-space:nowrap;
}

/* first column LEFT aligned */
.responsive-table td:first-child{
  text-align:left;
}

/* other columns CENTER aligned */
.responsive-table td:not(:first-child){
  text-align:center;
}

/* subject column */
.subject-cell{
  font-weight:600;
  color:#11345a;
}

/* link column */
.link-cell{
  padding:10px;
}

/* button style */
.demo-link-simple{
  display:inline-block;
  padding:7px 18px;
  border-radius:50px;
  background:#f2f8ff;
  color:#1e4f90;
  border:1px solid #c4d7f3;
  font-size:1.7rem;
  text-decoration:none;
  transition:.2s ease;
}

.demo-link-simple:hover{
  text-decoration:none;
  background:#1e4f90;
  color:#fff;
  border-color:#1e4f90;
  box-shadow:0 6px 14px -8px #163e70;
}

/* highlight row */
.full-model-mob{
  background:#fafdff;
}

.full-model-mob .subject-cell::before{
  content:"✨ ";
}

/* ===============================
   MOBILE (≤600px)
=================================*/
@media (max-width:600px){

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td{
    display:block;
    width:100%;
  }

  .responsive-table tr{
    margin-bottom:18px;
    padding:14px;
    background:#f8fbfe;
    border-radius:18px;
    border:1px solid #dde9fc;
    box-shadow:0 6px 12px -8px #bacde2;
  }

  .responsive-table td{
    padding:8px 0;
    white-space:normal;
  }

  /* keep subject left */
  .responsive-table td:first-child{
    text-align:left;
    font-size:1.7rem;
    border-bottom:1px dashed #bfd5f0;
    margin-bottom:6px;
    padding-bottom:6px;
  }

  /* links center on mobile */
  .responsive-table td:not(:first-child){
    text-align:center;
  }

  .demo-link-simple{
    width:auto;
    min-width:130px;
  }
}