.subscriptions-list {
  margin-top: 1rem;
}

.subscription-row {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #e3e6d8;
}

/* Zebra striping */
.subscription-row:nth-child(odd) {
  background-color: #eef4e3;
}

.subscription-row:nth-child(even) {
  background-color: #ffffff;
}

.subscription-title {
  font-weight: 600;
  margin-bottom: 0.25rem;

  font-family: Tahoma, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.42857;
  color: #666; 
  flex-direction: column;
}

.subscription-description {
  margin: 0;
  font-family: Tahoma, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.42857;
  color: #666;
  font-weight: 400;
  display: flex;
  flex-direction: column;

}

.subscription-meta {
  font-size: 0.9rem;
  color: #666;
}

.subscription-author {
  font-weight: 500;
}

.subscription-date {
  white-space: nowrap;

  font-family: Tahoma, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.42857;
  color: #666;

  display: flex;
  flex-direction: column;
  font-weight: 400;
      
  border: none;
  border-bottom: none;
  border-top: none;
  vertical-align: top;

}

.subscription-row {
  cursor: pointer;
}

.subscription-row:hover {
  background-color: #e4edd3;
}

/*For knowledge article tables to allow scroll bars if they go off the page in mobile devices*/

figure.table {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  float: none !important; /* fixes the float:left on the large table */
}

figure.table table {
  width: 100% !important;
  min-width: 400px; /* prevents columns collapsing too far */
  display: table !important;
}

figure.table table td {
  min-width: 2em;
  white-space: normal;
  word-break: break-word;
}
