@charset "UTF-8";
/* CSS Document */

.summary {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);	
/*  text-align: center; */
}

.summary-table {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fdfdfd;
/*  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  font-family: 'Reddit Sans', sans-serif;
  font-size: 1rem;
}

.summary-row {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom-style: solid;
  border-bottom-width: thin; 
  border-bottom-color: #CCC;
}

.summary-row-top {
  padding-top: 1.1rem;
}

.summary-row-bottom {
  border-bottom: none;
}

.summary-label {
  flex: 0 0 160px;
  font-weight: 600;
  color: #333;
  padding-right: 1rem;
/*  text-align: right; */
  text-align: left;
}

.summary-detail {
  margin: 0;
  padding: 0;
  color: #555;
  line-height: 1.4;
}

.summary-detail ul {
  margin: 0;
  padding: 0px 0px 0px 12px;
  font-size: 1.0rem;
}

/* Mobile Responsive Stacking */

@media (max-width: 768px) {
    
  .summary-row {
    flex-direction: column; /* stack label over detail */
    align-items: flex-start; /* make them left-aligned */
  }

  .summary-label {
    flex: none; /* remove fixed width */
    margin-bottom: 0.25rem;
  }	
	
}

/*  .summary-table {
    grid-template-columns: 1fr; /* Collapse to one column */
/*  }

  .summary-label,
  .summary-detail {
    grid-column: 1; /* Force both to start at column 1 */
/*  }

  .summary-label {
    margin-top: 1rem;
  } */
	
/*  .summary-table {
    display: block;
  }

  .summary-label,
  .summary-detail {
    display: block;
  }

  .summary-label {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  } */


/* @media (max-width: 80px) {

  .summary-table {
    overflow-x: auto;
  } */
	
/*  .summary-detail {
    text-align: left;
  }	*/
	
/*  .summary-row {
    flex-direction: column;
    margin-bottom: 0.5rem; /* tighter row spacing */
/*  } */

/*	.summary-label { */
/*		text-align: left; */
/*	} */
	
/*   .summary-label {
    text-align: left;
    padding: 0;
	margin-top: 0;  
    margin-bottom: 0.25rem; /* just enough space between label + detail */
/*    line-height: 1.4;	  
  }

/*  .summary-detail {
    padding: 0;
    margin: 0;
    line-height: 1.4;
  }
}