/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

.add-row-icon {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 18px; /* Make the icon smaller */
    font-weight: bold;
    cursor: pointer;
    color: white;
    background-color: green;
    border-radius: 50%;
    padding: 4px; /* Reduce the padding */
    width: 30px;
    height: 30px;
    line-height: 22px; /* Align the + symbol vertically */
    text-align: center;
}

div:hover .add-row-icon {
    display: inline-block;
}




.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.chat-bubble {
    background: var(--tblr-secondary-lt);
    border-radius: var(--tblr-border-radius-lg);
    padding: 1rem;
    position: relative
}

.chat-bubble-me {
    background-color: var(--tblr-success-lt);
    box-shadow: none
}

.chat-bubble-title {
    margin-bottom: .25rem
}

.chat-bubble-author {
    font-weight: 600;
    font-size: 13px;
}

.chat-bubble-date {
    color: var(--tblr-secondary);
    font-size: 12px;
}

.chat-bubble-body > :last-child {
    margin-bottom: 0;
    font-size: 12px;
}

.readonly-clickable {
    cursor: pointer !important;
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
}

    .readonly-clickable:hover {
        background-color: #e9ecef !important;
        border-color: #adb5bd !important;
    }

    .readonly-clickable:focus {
        background-color: #e9ecef !important;
        border-color: #86b7fe !important;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
    }