/* Admin CSS Document */
  
  .container {
	display: flex;
  }
  
  .left-column {
	width: 50%;
	background-color: #ffffff;
	margin-right: 20px;
	padding: 25px;
	border: 1px solid #dddddd;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .right-column {
	width: 25%;
	padding: 20px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  .round-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .round-image {
	width: 250px;
	height: 245px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  .round-image img {
	max-width: 95%;
	max-height: 95%;
	border: 2px solid #dddddd;
  }
  .bio-data {
	text-align: center;
  }
  .bmc-btn img {
    text-align: center;
    width: 70%;
	transition: transform .2s;
}
.bmc-btn img:hover {
    transform: scale(1.1);
}

