#conversiechat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-width: 90%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

.cc-header {
  color: #fff;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0 0;
}

.cc-header button { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }

.cc-messages { flex: 1; padding: 12px 12px 0 12px; overflow-y: auto; background: #eeeeee; }

.cc-message { margin-bottom: 10px; line-height: 1.4; display: flex; align-items: center; font-size: 16px; 
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    padding: 10px;
    border-radius: 0 20px 20px 20px;}
.cc-message.bot .cc-avatar { width: 32px; height:32px; border-radius:50%; margin-right:6px; }

.cc-options { display: flex; flex-direction: column; padding: 12px; }
.cc-options button { margin-bottom: 8px; border:none; border-radius:8px; padding:10px; color:#fff; cursor:pointer; font-size:14px; font-weight:bold; }

.cc-input { border-top:1px solid #eee; display:flex; flex-direction:column; padding:12px; }
.cc-input input { margin-bottom:8px; padding:8px; font-size:14px; border-radius:8px; border:1px solid #ddd; }
.cc-input button { padding:8px; border:none; border-radius:8px; color:#fff; cursor:pointer; }

/* Header container */
#conversiechat-widget .cc-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #ff4b7d;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}
/* Timestamp rechts onderin per bericht */
#conversiechat-widget .cc-message{
	position: relative;
}
#conversiechat-widget .cc-message strong{
	font-family: arial !important;
    display: contents;
}
#conversiechat-widget .cc-message .cc-time {
    position: absolute;
    font-size: 10px;
    right: 10px;
    bottom: 10px;
    color: #888;
    text-align: right;
}

/* Avatar links van de titel */
#conversiechat-widget .cc-avatar {
    margin-right: 10px;
    flex-shrink: 0;
    position: absolute;
    left: -80px;
}

#conversiechat-widget .cc-avatar img {
	background-color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Titel tekst */
#conversiechat-widget .cc-title {
    font-weight: bold;
    font-size: 14px;
}

/* Close button */
#conversiechat-widget #cc-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
#conversiechat-widget .cc-input #cc-back {
    background: #ccc;
    color: #000;
    font-weight: normal;
    padding: 12px;
    margin-top: 5px;
}
#conversiechat-widget .cc-input #cc-back:hover {
    opacity: 0.7;
}
#cc-powered-by {
    position: relative;
    text-align: right;
    font-size: 11px;
    pointer-events: auto;
    border-top: 1px solid #eee;
    padding: 4px 12px;
}
#cc-powered-by span{
    color: #999;
    font-weight: normal;
}

#cc-powered-by a {
    color: #000; /* LSART zwart */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0 10px 10px;
}

#cc-powered-by a:hover {
    text-decoration: underline;
}

#cc-powered-by img {
    width: 14px;
    height: auto;
    transform: translateY(1px);
    display: inline-block;
}
.cc-field-error {
    border: 1px solid red !important;
    background-color: #ffe6e6;
}
.cc-error-message{
	font-size: 12px;
	color:red;
	margin-bottom:10px;
}