#rtm-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 350px;
}

.rtm-notification {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 12px;
    padding: 15px;
    border-left: 5px solid #17a2b8;
    transform: translateX(420px);
    transition: transform 0.3s ease;
}

.rtm-notification.show {
    transform: translateX(0);
}

.rtm-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rtm-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.rtm-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    padding: 0 8px;
    line-height: 1;
}

.rtm-close:hover {
    color: #333;
}

.rtm-message {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 12px;
    word-break: break-word;
    font-weight: normal;
}

.rtm-link {
    display: inline-block;
    font-size: 13px;
    color: #17a2b8;
    text-decoration: none;
    font-weight: 500;
}

.rtm-link:hover {
    text-decoration: underline;
}