/* Panel container */
.cometchat-message-information {
background: var(--cometchat-message-information-background, var(--cometchat-background-color-01));
border-radius: var(--cometchat-message-information-border-radius, inherit);
}
/* Header section */
.cometchat-message-information__header {
padding: var(--cometchat-message-information-header-padding, var(--cometchat-spacing-3) var(--cometchat-spacing-4));
border-bottom: var(--cometchat-message-information-header-border-bottom, 1px solid var(--cometchat-border-color-light));
}
/* Title text */
.cometchat-message-information__title {
font: var(--cometchat-message-information-title-font, var(--cometchat-font-heading4-medium));
color: var(--cometchat-message-information-title-color, var(--cometchat-text-color-primary));
}
/* Section titles (Delivered, Read) */
.cometchat-message-information__section-title {
font: var(--cometchat-message-information-section-title-font, var(--cometchat-font-caption1-medium));
color: var(--cometchat-message-information-section-title-color, var(--cometchat-text-color-secondary));
}
/* Receipt user name */
.cometchat-message-information__receipt-name {
font: var(--cometchat-message-information-receipt-name-font, var(--cometchat-font-heading4-medium));
color: var(--cometchat-message-information-receipt-name-color, var(--cometchat-text-color-primary));
}
/* Receipt timestamp */
.cometchat-message-information__receipt-time {
font: var(--cometchat-message-information-receipt-time-font, var(--cometchat-font-body-regular));
color: var(--cometchat-message-information-receipt-time-color, var(--cometchat-text-color-secondary));
}
/* Close button */
.cometchat-message-information__close-button {
background: var(--cometchat-message-information-close-button-background, transparent);
border-radius: var(--cometchat-message-information-close-button-border-radius, var(--cometchat-radius-max));
}
/* Retry button (error state) */
.cometchat-message-information__retry-button {
background: var(--cometchat-message-information-retry-button-background, var(--cometchat-primary-color));
color: var(--cometchat-message-information-retry-button-color, var(--cometchat-static-white));
border-radius: var(--cometchat-message-information-retry-button-border-radius, var(--cometchat-radius-2));
}