.cp_b_container {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    width: 100%;
}

.cp_bild {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px 4px 15px 4px;
    border: 2px solid #00ffe65e;
    box-shadow: 0 0 5px rgb(0 255 255 / 28%), 0 0 10px rgb(0 255 255 / 21%);
    filter: sepia(50%) hue-rotate(-20deg) brightness(90%) contrast(110%);
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
}

/* Hover-Effekt (optional, für Interaktivität) */
.cp_bild:hover {
  transform: scale(1.05) rotate(-2deg); /* Leichtes Zoomen und Kippen */
  border-color: #ff00ff;                /* Wechselt zu Neon-Magenta */
  box-shadow: 
    0 0 8px rgba(255, 0, 255, 0.8),
    0 0 15px rgba(255, 0, 255, 0.6);
  filter: none;                         /* Originalfarben zeigen */
}