.comlink-notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 280px;
    max-width: 80vw;
    pointer-events: none;
}

.comlink-notification {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
    padding: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none;
    cursor: pointer;
    overflow: hidden;
    pointer-events: auto;
    border-left: 4px solid #0073aa;
}

.comlink-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
}

.comlink-notification.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.comlink-notification-header {
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.comlink-notification-header:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.comlink-notification-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.comlink-notification:hover .comlink-notification-title {
    color: #0073aa;
}

.comlink-notification-image {
    width: 100%;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.comlink-notification:hover .comlink-notification-image {
    transform: scale(1.03);
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    .comlink-notification-container {
        bottom: 15px;
        left: 15px;
        width: 240px;
    }
    
    .comlink-notification {
        padding: 12px;
    }
    
    .comlink-notification-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .comlink-notification-image {
        height: 55px;
    }
}