
/*	THE BODY CARRYING THE HEADER AND THE NAVIGATION */

body::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #888;
}

body {
	font-family: "Circular Std Book", sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	min-height: 100vh;
	position: relative;
	font-size: 0.9rem;
	font-weight: normal;
	line-height: 1.5;
	color: #3E4B5B;
	text-align: left;
	display: block;
	background-color: rgb(255, 255, 255);
	box-sizing: border-box;
}




/* CSS FOR HEADER.PHP */

.header {
	position: relative;
	width: 100%;
	height: 600px;
	text-align: center;
	padding: 0;
	background-color: #f0f0f0;
	border-radius: 20px;
	transition: appear 2s ease-in-out;
	animation-name: zoomIn;
  animation-duration: 4s;
}

@keyframes zoomIn  {
  0% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0%);
  }
}


.header-content {
	position: absolute;
	bottom: 80px;
	left: 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	color: white;
	text-align: left;

}



.profile-container {
  overflow: hidden;
  width: 50%;
  height: 50%;
}

.profile-container img {
  border-radius: 50%;
  overflow: hidden;
  width: 50%;
  height: 50%;
}

.header-image {
    
	width: 100%;
	height: 85%;
	object-fit: contain;
	/*background-image: url('../admin/upload/back1.jpg');*/
	background-image: linear-gradient(to top,  grey, #f0f0f0);
	background-size: cover;
	margin: 0;
	box-shadow: 0 50px 10px rgba(0,0,0,0.5);
	border-radius: 20px;
	border: none;

}

#name {
     margin-top: inherit;
     margin-bottom: 1px; 
     color: white; 
     font-weight: bolder; 
     font-size: 50px; 
     -webkit-text-stroke: 2px black; 
     background-color: transparent;   
}

.header:hover .header-image {
	animation-name: shadow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes shadow {
  50% {box-shadow: 0 30px 7px 0 rgb(194, 179, 165);}
}

.social-media {
	display: flex;
	justify-content: space-between;
	margin: 0 0;
	position: absolute;
	top: 60px;
	right: 20px;
}

.social-media i {
	width: 30px;
	height: 30px;
	font-size: 30px;
}

.application-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0;
	position: absolute;
	bottom: 0;
	left: 20px;
}

.buttons {
	display: flex;
	justify-content: space-between;
	margin: 0;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.btns {
	background-color: #f0f0f0;
  	color: #FFFFFF;
  	padding: 3px 7px;
  	border: 1px solid black;
  	border-radius: 5px;
  	cursor: pointer;
  	text-align: center;
  	text-decoration: none;
	transition: background-color 0.3s ease-in-out;
	color: black;
}

.btns:hover {
  background-color: #f0f0f0;
}

.btns a {
	text-decoration: none;
}

.buttons button {
	margin-right: 10px;
	font-size: 14px;
	color: black;
	font-weight: bolder;
}




/* Style for the Footer Div */
.footer {
	width: 100%;
	background-color: #f0f0f0;
	position: relative;
	text-align: center;
	border-radius: 20px;
	margin: 0 auto;
}

.footer p {
	color: red;
}





/* Others */

p {
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0;
  margin-top: 0;
}
.element-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #333;
  margin-top: 5px
}

.icon-spacing {
  margin-right: 30px;
}

.icon-spa {
  margin-right: 5px; /* adjust the value to your liking */
}