// team scss .rts-team-area{ .team-top{ margin-bottom: 66px; .section-title-area{ margin-left: 50px; } } } .team-wrapper{ position: relative; z-index: 1; overflow: hidden; border-radius: 10px; .content{ background: var(--color-primary); padding: 14px 37px; border-radius: 6px; max-width: max-content; width: 100%; text-align: center; position: absolute; z-index: 1; left: 50%; transform: translateX(-50%); bottom: 21px; .title{ line-height: 1; font-size: 16px; font-weight: 600; margin-bottom: 10px; } .designation{ font-size: 12px; line-height: 1; font-weight: 500; margin-bottom: 0; } } } .chatbox { width: 300px; padding: 10px; background: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; gap: 10px; } .message { padding: 10px; border-radius: 10px; max-width: 80%; animation: fadeIn 0.5s ease; opacity: 0; } .user { align-self: flex-start; background: #eaeaea; } .reply { align-self: flex-end; background: rgb(81, 214, 44); } .reply span { color: #fff; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }