.prediction-eye-large { position: relative; display: inline-block; width: 60px; /* Anpassung der Breite für bessere Proportionen */ height: 28px; /* Anpassung der Höhe für bessere Proportionen */ background-color: #000; border-radius: 50%; /* Runde Form für das äußere Auge */ clip-path: ellipse(50% 41% at 50% 50%); } .prediction-eye-large::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60%; /* Weiße Iris */ height: 80%; background-color: #fff; border-radius: 50%; } .prediction-eye-large::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20%; /* Schwarze Pupille */ height: 40%; background-color: #000; border-radius: 50%; }