/* ---------------------------------------------- */
/* ---     LSE Econ PhD students template     --- */
/* --- 	            First Draft               --- */
/* ---         Alexander C. Lembcke           --- */
/* ---------------------------------------------- */

html {
	overflow-y: scroll;
	overflow-x: auto;
	height: 100%;
}
body {
	font:16px Raleway,Calibri, sans-serif;;
	background-color:#f2e9df;   /* #dae7f2; */ 
	padding: 0px;
	padding-bottom: 50px;
	height: 100%;
}

a {
	color: rgb(139,125,107);
	text-decoration:none;
}
a:hover{
	color: #003366;
	text-decoration: none;
}

/* **
.navbar {
	background-color: #333;
	overflow: hidden;
	position: fixed;
	bottom: 15;
	width: 30%;
}

.navbar a {
	float: center;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	fontsize: 16px;
}

.navbar a:hover {
	background-color: #ddd;
	color: black;
}

.navbar a.active {
	background-color: #04AA6D;
	color: white;
}
****** */

table {
	border: 0 0 0 0; 
	vertical-align: top;
	text-align: justify;
	border-spacing: 0px 0px 300px 0px
}
.mine-td {
	/* fallback for browser that do not support rgba */
  	background: #ccc;
  	/* semitransparent background */
  	background: rgba(0, 0, 0, .1);
	padding: 0px 15px 15px 15px;
}

img {
	margin: 7px 0px 6px 0px;
	border: 0 0 0 0;
	vertical-align=top;
}

.txt {
	padding: 3px 0px 0px 0px;
	margin: 0px 0px 0px 6px;
}

b {
	text-decoration: bold;
	color:#003366; 
}
b.b {
	text-decoration: bold;
	color:black;
}

.smallhdr  {
	font:17px Raleway;
	color: #003366;
	letter-spacing:.1em;
	font-weight: bold;
	margin: 20px 0px 3px 0px;
}

.titles {
	font:18px Raleway;
	color: #003366;
	font-weight: bold;
	letter-spacing: .1em;
	margin: 20px 0px 3px 0px;
}
.subtitles {
	font:16px Raleway;
	color: #003366;
	font-weight: bold;
	letter-spacing: .1em;
	margin: 15px 0px 3px 4px;
}
.researchhdr {
	font:16px Raleway;
	font-weight: bold;
	letter-spacing: .1em;
	margin: 7px 0px 3px 4px;
}
.researchsubhdr {
	font:12px Raleway;
	letter-spacing: .1em;
	margin: 0px 0px 3px 5px;
}
.profile-picture {
  border-radius: 50%;
}

.bg {
	background-image: url(background.png);
	height: 30%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#headerlinks {
	color: rgb(139,125,107);
	font-size: 16px;
	font-weight:bold;
	letter-spacing: .2em;
}

#logo {
	font:27px Raleway;
	font-weight:bold;
	color:#003366; 
	margin: 30px 0px 2px 0px;
	letter-spacing:.3em;
}
#phd {
	font:16px arial;
	color: rgb(0, 0, 0);
	margin: 10px 0px 1px 0px;
	letter-spacing:.2em;
}
#parma {
	font:16px Calibri,Poppins, sans-serif;;
	background-image: url(background.jpg);
	padding: 0px;
	width: 100%
	height: auto;
}
ol.c {
  list-style-type: number;
  margin: 0px;
}
li{
  margin: 7px 0;
}

.user-panel {
  float:center;
  /*height: px;*/
/*  width: 580px;*/
  padding: 100px 50px 100px 50px;
  border-radius: 0px;
  /* fallback for browser that do not support rgba */
  background: #ccc;
  /* semitransparent background */
  background: rgba(0, 0, 0, .1);
  text-align: justify;
  color: black;
}
/* clear the float using the pseudo after element */
user-panel:after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
.sides-panel {
  float:center;
  /*height: px;*/
  width: 200px;
  padding: 15px;
  border-radius: 0px;
  /* fallback for browser that do not support rgba */
  background: #fff00;
  /* semitransparent background */
  background: rgba(0, 0, 0, 0);
  text-align: justify;
  color: black;
}
/* clear the float using the pseudo after element */
sides-panel:after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}



.profile-container {
	display: flex;
	flex-wrap: wrap; /* Ensures wrapping on small screens */
	gap: 20px; /* Adds spacing between sections */
	width: 60%; /* Adjust width as needed */
	margin: 0 auto; /* Centers the container */
  }
  
  .profile-picture-section {
	flex: 1; /* Takes up equal space as the caption section */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  
  .profile-caption-section {
	flex: 2; /* Caption section gets more space than the image section */
  }
  

  
  /* Responsive Design */
  @media (max-width: 768px) {
	.profile-container {
	  flex-direction: column; /* Stack elements vertically on small screens */
	  text-align: center; /* Center text content for smaller screens */
	}
  }
 