@charset "utf-8";
/* CSS Document */
/* Main container */
#clairety-history-container {
   /* max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #0099cc; */
}

/* Question list */
.ch-question {
    /*padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
	background: #eef8ff;
    border-radius: 6px;*/
    cursor: pointer;
    
}

.ch-question:hover {
    /*background: #d9f0ff;*/
}

.ch-question-text {
	text-decoration: underline;
}

.ch-question-time {
    /*font-size: 0.8em;*/
    opacity: 0.6;
}

/* Modal Overlay */
#clairety-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
}

/* Modal window */
#clairety-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 700px;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

#clairety-modal-content {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

#clairety-modal-close {
    float: right;
    /*font-size: 26px;*/
    cursor: pointer;
    border: none;
    background: none;
}

/* Conversation messages */
.ch-msg {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.ch-msg.user {
    background: #e6f4ff;
}

.ch-msg.bot {
    background: #f1f1f1;
}

.ch-sender {
    font-weight: bold;
}

.ch-time {
   /* font-size: 0.8em;*/
    opacity: 0.6;
    margin-top: 6px;
}
