/* 
 * Data Display for CIPS custom modules
 */

section.data-display {
  /*background-color: rgba(44,111,191,0.4);*/
  margin-bottom: 12px;
  /*border-top: 1px solid rgba(0,0,0,0.2);*/
}
section.data-display article {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.2);
}
section.data-display article h2 {
  font-weight: bold;
  background-color: rgba(0,0,0,0.1);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 4px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
section.data-display article h3 {
  margin: 0;
  background-color: rgba(0,0,0,0.1);
  border-bottom-right-radius: 24px;
  padding: 6px 6px 6px 14px;
  width: 30%;
  min-width: 200px;
}
section.data-display .content {
  display: flex;
  padding: 8px 16px;
}

/* same as data-display, but no outer container for margin bottom */
article.display {
  /*background-color: rgba(44,111,191,0.4);*/
  border-top: 1px solid rgba(0,0,0,0.2);
}
article.display h2 {
  font-weight: bold;
  background-color: rgba(0,0,0,0.1);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 4px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
article.display h3 {
  margin: 0;
  background-color: rgba(0,0,0,0.1);
  border-bottom-right-radius: 24px;
  padding: 6px 6px 6px 14px;
  width: 20%;
  min-width: 200px;
}
article.display .content {
  /*display: flex;*/
  padding: 8px 16px;
}