/* VISIBILITY CHART */
.chart-container {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.chart-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.chart-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.bg-image {
  background-image: url(/assets/img/SEO-Freelancer-für-mehr-Sichtbarkeit-deines-Unternehmens-large-bg.webp);
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover; 
}

th, td {
  padding: 2% 0 0 1%;
}

.keyword-box {
    background-color: #e0e0e0; /* Hellgrau */
    color: #333;               /* Dunkle Schrift */
    padding: 5px 5px;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}
.next-phase {
    display: block;
    width: 300px;
}
.learnings {
    display: block;
    max-width: 600px;
}
.ul-arrows li {
  position: relative;
  padding-left: 1.5em;
}

.ul-arrows li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: 'black'; /* Beispielpfeil-Farbe */
}
