Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
.chat-container {
max-width: 600px;
margin: 20px auto;
border: 1px solid #ccc;
border-radius: 5px;
}
.chat-header {
background: #075e54;
color: white;
padding: 10px;
text-align: center;
border-radius: 5px 5px 0 0;
}
.chat-messages {
height: 400px;
padding: 20px;
overflow-y: auto;
background: #f5f5f5;
display: flex;
flex-direction: column;
}
.message-wrapper {
width: 100%;
margin: 5px 0;
display: flex;
}
.message {
padding: 10px;
border-radius: 5px;
max-width: 70%;
word-wrap: break-word;
}
.received-wrapper {
justify-content: flex-start;
}
.sent-wrapper {
justify-content: flex-end;
}
.system-wrapper {
justify-content: center;
}
.received {
background: white;
border: 1px solid #ddd;
}
.sent {
background: #dcf8c6;
border: 1px solid #c7e6b8;
}
.system {
background: #ffe0b2;
border: 1px solid #ffcc80;
font-style: italic;
font-size: 0.9em;
}
.chat-input {
padding: 20px;
background: white;
display: flex;
gap: 10px;
}
.chat-input input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
.chat-input button {
padding: 10px 20px;
background: #075e54;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
.chat-input button:hover {
background: #128c7e;
}
.chat-input button:disabled {
background: #cccccc;
cursor: not-allowed;
}
.login-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.login-box {
background: white;
padding: 20px;
border-radius: 5px;
text-align: center;
}
.login-box h2 {
margin-bottom: 20px;
color: #075e54;
}
.login-box input {
width: 200px;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
.login-box button {
padding: 10px 20px;
background: #075e54;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
.hidden {
display: none !important;
}