#exhibition{
	max-width: 1200px;
	display: block;
	margin: 20px auto 100px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 12px hsla(0, 0%, 0%, 0.07);
	padding: 20px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
/* Expositiekaart binnen exhibition */
.exhibition-card{
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0;
	gap: 20px;
}
.msg.red{
	color: red;
	background-color: #fff;
}
.msg.gr{
	color: #000;
	background-color: #D6F2CD;
	border-radius: 4px;
	padding: 0 4px;
}
/* Gebruikersprofiel links */
.profile{
	max-width: 150px;
	text-align: center;
	box-sizing: border-box;
}
.profile-photo{
	box-sizing: border-box;
	width: 100%;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
}
.username{
	font-weight: bold;
	font-size: 1rem;
	color: #333;
}
/* Details rechts */
.details {
	flex: 1;
}
.exhibition-title{
	margin-top: 0;
	font-size: 1.4rem;
	color: #222;
	margin-bottom: 10px;
}
.exhibition-image{
	max-width: 100%;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 10px;
}
.details p{
	margin: 6px 0;
	color: #444;
	font-size: 0.95rem;
}
.details div.group{
	margin: 30px 0;
}
#like-display{
	display: block;
	margin-bottom: 20px;
}
#like-display #like-count, #like-display #like-symbol, #like-display #like-char{
	font-size: 20px;
	float: left;
	margin-right: 8px;
}
.bi-heart-fill, .bi-heart{
	cursor: pointer;
	color: red;
}
div.sub-group{
	margin: 10px 0;
}
p.info-title{
	font-size: 18px;
}
/* berichten */
.messages{
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0;
	gap: 15px;
}
.view-form{
	transition: ease all .2s;
}
.reaction{
	line-height: 1.2;
}
.react-form{
	width: 100%;
	box-sizing: border-box;
}
.react-form form{
	width: 100%;
	box-sizing: border-box;
}
.react-form button{
	cursor: pointer;
    margin-right: 10px;
    color: rgb(74, 74, 102);
    background-color: #fff;
    border: none;
	color: #aaa;
    border-radius: 4px;
    transition: 0.2s;
	margin: 10px 0;
	font-size: 16px;
}
.react-form button:hover{
    color: #000;
}
.writer-photo{
	max-width: 40px;
	text-align: center;
	box-sizing: border-box;
}
.writer-name{
	color: #ff6b6b;
	font-weight: bold;
	text-decoration: none;
}
.react-form textarea{
	border-radius: 6px;
	width: 100%;
	height: 120px;
	border: 1px solid #aaa;
}
.reaction-btn{
	float: left;
	cursor: pointer;
	background-color: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
	font-size: 16px;
	border: none;
    transition: background-color 0.2s;
}
.msg-date{
	font-weight: bold;
	color: #aaa;
}
/* reageren */
.message{
	display: inline-block;
	width: 100%;
	height: 100px;
	resize: vertical;
	border: 1px solid #aaa;
	border-radius: 10px;
	font-size: 18px;
	padding: 8px;
	box-sizing: border-box;
}
.emoticons{
	float: right;
	width: 65px;
	height: 43px;
	overflow: hidden;
	padding: 5px;
	box-sizing: border-box;
	border: 1px solid #aaa;
	border-radius: 10px;
	font-size: 20px;
    user-select: none;       /* Standaard */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
	transition: all ease .2s;
	margin-bottom: 10px;
}
.open-close{
	color: #666;
	cursor: pointer;
}
.emoticons h5{
	font-size: 20px;
	margin-top: 15px;
}
.emoticons h5:first-child{
	margin-top: 0;
}
.emoji{
	float: left;
	margin: 2px;
	cursor: pointer;
}
#msg-btn{
	cursor: pointer;
	background-color: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
	font-size: 16px;
	border: none;
    transition: background-color 0.2s;
}
#msg-btn:hover{
	background-color: white;
    color: #ff6b6b;
	box-shadow: 0 0 0 1px #ff6b6b;
}
