.datalab-card {
    position: fixed;
    top: 60px;
    right: 30px;
    width: 360px;
    max-width: 90vw;
    z-index: 999;
    background: linear-gradient(135deg, #1a73e8 0%, #ee0979 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 24px;
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #1a73e8 #fff;
}

.datalab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 100%);
}

.card-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 16px;
}

.company-name {
    margin: 0 0 6px 0;
    font-weight: 800;
    font-size: 1.5em;
    letter-spacing: -0.5px;
}

.company-tagline {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
    font-weight: 400;
}

.products-list {
    margin-bottom: 24px;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-item.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-title {
    font-weight: 700;
    font-size: 1.1em;
}

.product-badge {
    background: #ff4081;
    font-size: 0.7em;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.product-description {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    gap: 12px;
}

.contact-btn, .demo-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.demo-btn {
    background: white;
    color: #1a73e8;
}

.demo-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation for card entrance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.datalab-card {
    animation: slideIn 0.5s ease-out;
}

/* For Webkit browsers */
.datalab-card::-webkit-scrollbar {
    width: 8px;
    background: #fff;
}
.datalab-card::-webkit-scrollbar-thumb {
    background: #1a73e8;
    border-radius: 8px;
}