/* blog */
#blog {
	padding: 20px;
	padding-top: 80px;
	margin:0px auto;
	text-align: left;
}

#blog article {
	margin-bottom:30px;
}

#blog article h1 {
	font-size: 2.5rem;
}

#blog article h2 {
	font-size: 2rem;
}

#breadcrumbs {
	margin-bottom: 30px;
}

#breadcrumbs a {
	color:rgb(27, 57, 168);
	text-decoration: none;
}

#blog-header {
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#blog-header img {
	width:80px;
	height:80px;
	border-radius: 50%;
	box-shadow: 0px 2px 5px #ccc;
}

.image-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap:0.5rem;
	padding:2rem;
}

.image-container img {
	margin:5px;
	cursor: pointer;
	width:400px;
	max-width:400px;
	box-shadow: 0px 5px 10px rgb(170, 170, 170);
}

.ref-links {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:0.5rem;
}

.ref-link {
	display:inline-block;
	padding:8px;
	background:rgb(207, 206, 220);
	border-radius: 5px;
}

#article-header-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    vertical-align: middle;
}

#blog section {
	padding:2rem;
    display: flex;
	flex-direction: column;
	gap:0.5rem;
    border-bottom: 2px solid rgb(187, 187, 187);
}

#blog-header .metadata {
	padding: 20px;
}

#blog-header .metadata a {
	display: block;
	color:rgb(27, 57, 168);
	text-decoration: none;
	font-weight: bold;
}

#blog a {
	display: inline-block;
	color:rgb(27, 57, 168);
	text-decoration: none;
	width: fit-content;
}

#modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 50px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-self: center;
}

#modal-image {
	display: block;
	margin: 0 auto;
	max-width: 90%;
	max-height: 90%;
}

.modal-open {
	overflow: hidden;
}

#blog .prompt-box {
	border: 1px solid #ccc;
	background-color: #dddddd;
	border-radius: 5px;
	font-size: 1.2rem;
	position: relative;
	padding-right: 30px;
}

#blog .prompt-box button {
	appearance: none;
	-webkit-appearance: none;
	  border-radius: 5px;
	border:0px;
	position: absolute;
	margin:0px;
	width:30px;
	height:30px;
	top:10px;
	right:10px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 8px;
}

#blog .prompt-box button svg {
	width:25px;
}

#blog .prompt {
	flex:6;
	margin-bottom: unset;
	overflow-x: auto;
	padding: 15px;
	line-height: 24px;
}

#notification-container {
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	z-index: 9999;
}

.notification {
	font-size:12px;
	top: -100px;
	background-color: #4CAF50;
	color: white;
	text-align: center;
	padding: 10px;
	opacity: 1;
	animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	max-width:160px;
	border-radius: 5px;
	margin:5px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.notification .close-btn {
	padding:0px;
	appearance: none;
	-webkit-appearance: none;
	  border-radius: 0;
	border:0px;
	color:white;
	border:0px;
	background:transparent;
	font-size: 16px;
	cursor: pointer;
}

@keyframes slideDown {
	from {
		top: -100px;
		transform: translateY(-100%);
	}
	to {
		top: 10px;
		transform: translateY(0);
	}
}