﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}


/* Add to Content/Site.css or create new CSS file */
body {
    background-color: #ffd6f4; /* Pink background */
    font-family: Arial, sans-serif;
}

.chat-container {
    background-color: #ffe6fa;
    border: 2px solid #cc00cc;
}

.violet-bold {
    color: #9400d3; /* Violet color */
    font-weight: bold;
}

.btn-primary {
    background-color: #ff66b3;
    border-color: #cc0099;
}

    .btn-primary:hover {
        background-color: #e600ac;
        border-color: #990073;
    }



.message-current-user {
    background-color: #ffb6e6; /* Light pink for current user */
    padding: 8px;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 70%;
    margin-left: auto;
    text-align: right;
}

.message-other-user {
    background-color: #d6b3f4; /* Light violet for other user */
    padding: 8px;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 70%;
    margin-right: auto;
    text-align: left;
}

.message-time {
    font-size: 0.8em;
    color: #666;
}

.message-sender {
    font-weight: bold;
    color: #9400d3; /* Violet */
}

/* Add to your Site.css */
.chat-container {
    height: 500px;
    overflow-y: auto;
    padding: 15px;
    background-color: #ffe6fa;
    border-radius: 10px;
    border: 2px solid #cc00cc;
}

.message-input-area {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffe6fa;
    border-radius: 10px;
    border: 2px solid #cc00cc;
}

