.card-not-found {
    width: 100%;
    height: 150px;
    display: grid;
    grid-template-columns: 80px auto;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 16px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.card-text h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #333;
}

.card-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}