#key-values-search-results {
    margin-top: 20px;
    transition: height 1s ease-in-out; /* Smooth height transition */
}

.post-item {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    opacity: 0; /* Start with hidden for fade-in effect */
    transition: opacity 1s ease-in;
}

.post-item h3 {
    margin-top: 0;
}

.post-excerpt {
    margin-bottom: 15px;
}

.post-relevance {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    gap: 5px;
}

.relevance-bar {
    height: 10px;
    background-color: #C10D2C; /* Rot für die Relevanzbalken */
    transition: width 1s linear; /* Linear animation for consistent speed */
    border-radius: 5px;
    width: 0; /* Start with 0 width */
}

.relevance-percentage {
    display: none; /* Initially hidden */
    margin-top: 5px;
    font-size: 0.9em;
    color: #333;
}

.cta-text {
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
}

.cta-button {
    display: none; /* Hide initially */
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #C10D2C;
    border: solid 3px #C10D2C;
    color: #fff;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s;
}
.cta-button:hover {
    background-color: transparent;
    color: #C10D2C;
    transition: all 0.5s;
}
