/* Container for the chat messages */
#chat-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Individual messages */
.message {
    padding: 10px 40px 10px 10px;
    margin: 5px;
    border-radius: 8px;
    max-width: 90%;
    word-wrap: break-word;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background: #007bff;
    color: white;
}

/* Sent and received message styling */
.sent {
    align-self: flex-end;
    text-align: right;
    padding: 10px 10px 10px 40px;
}

.received {
    align-self: flex-start;
    text-align: left;
}

/* Author styling */
.author {
    font-weight: bold;
    font-size: 12px;
}

/* Timestamp styling */
.timestamp {
    font-size: 10px;
    text-align: right;
    margin-top: 4px;
    margin-right: -30px;
}

.sent > .timestamp {
    margin-right: 0px;
}

/* Blockquotes for quoted messages */
.blockquote-link {
    text-decoration: none;
    color: inherit;
}

blockquote {
    background: #e9ecef;
    padding: 5px;
    border-left: 3px solid #ccc;
    margin: 5px 0;
    font-size: 12px;
    color: #555;
	border-radius: 8px;
	margin-bottom: 10px;
    background-color: #69b1ff;
    color: white;
	border: none;
	padding: 7px;
}

#loading {
    text-align: center;
    margin-top: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
    color: black;
}

/* Styling for images and audio within messages */
.message img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
}

.message audio {
    width: 300px;
    margin-top: 5px;
}

.message video {
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
}

/* Select2 dropdown styling */
#hashtag-filter {
    width: 100%;
    margin-bottom: 10px;
    display: block;
	color: black;
	height: 40px;
}

.select2-selection__choice__display {
	color: black;
	font-family: Arial, sans-serif;
	margin-left: 7px;
}

#noMessages {
    text-align: center;
    margin-top: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
    color: black;
}

.select2-container .select2-search--inline .select2-search__field {
	height: 30px;
}

.select2-results {
	color: black;	
	font-family: Arial, sans-serif;
	margin-left: -15px;
}

.select2-dropdown {
	/*transform: translate(0px, 34px);*/
}
