
.containerpp {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-auto-rows: max-content;	
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: stretch;
 }

/**
 * Custom CSS added here 
 grid-template-rows: 60px 1fr 60px;
body {
  font-family: "Raleway", sans-serif;
  background-color: #fffffe;
  padding: 1rem;
}
*/

.containerpp {
  max-width: 980px;
  height: calc(100vh - 3rem);
  margin: 0 auto;
  grid-template-areas:
    "header header"
    "sidebar content"
    "footer footer";
}

/* We have to add this manually */  
.headerpp { grid-area: header;}
.footerpp { grid-area: footer; }
.sidebarpp { grid-area: sidebar; }
.contentpp { grid-area: content; }  
  
.containerpp > * {
	display: grid;  
	border-radius: 5px;
	font-size: 14px;
	box-shadow: 0 1px 6px 0 hsl(0, 0%, 0%, 20%);
}
.headerpp, .footerpp {
	display: flex;
	color: hsl(22, 78%, 26%);
	background-color: hsl(48, 96%, 89%);
}

.contentpp {
	color: hsl(177, 51%, 23%);
	background-color: hsl(177, 51%, 93%);
}


/** client search input */
.clientsearchinputpp {
	margin-top: 0px;
	margin-bottom: 0px;
	height: 60px;
	width: 50%;
}


/** client search table */
.clientdetailspp {
	margin-top: 0px;
	margin-bottom: 0px;
	height: 60px;
}
/** client search table data*/
.clientdetailsdatapp {
	font-size: 12px;	
}


/** client tx search table label */
.clienttxlabelpp {
	margin-top: 40px;
	padding-left: 10px;
	font-size: 16px;
	font-weight: bold;
}

/** client tx search table */
.clienttxpp {
	margin-top: 5px;
	margin-bottom: 0px;
	height: 60px;	
	vertical-align: top;
}

/** client tx search table headers */
.clienttxlabelheadpp {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

/** client tx search table data */
.clienttxdatapp {
	font-size: 12px;
	text-align: center;
	
}
/** sidebar content */
.sidebarpp {
	color: hsl(177, 51%, 23%);
	background-color: hsl(177,51%, 82%);
}

/** client search button */
.searchbuttonpp {
	display:block;
	width:25px; height:25px;
	/* background-image:url(image.jpg); background-repeat:no-repeat;*/
	text-indent:-999px;
	font-size:0px; 
	line-height:0;
}

/** header data */
.brokersummarypp, .basecurrencypp {
	margin-left: auto;
}