/**
 * Toast Content Component
 * 
 * Title and message content area.
 * Handles text overflow with ellipsis.
 * 
 * @package    Toastifier
 * @subpackage Components
 * @version    2.0.0
 */

.toastifier-toast-content {
    flex-grow: 1;
    max-width: calc(100% - 102px);
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.toastifier-toast-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 15px;
    line-height: 1.3;
}

/* Message (2-line ellipsis) */
.toastifier-toast-message {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
