#scouting-crowdfund-widget {
    background-color: #f7f7f7;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

#scouting-crowdfund-widget:hover {
    transform: scale(1.02);
}

.opgehaald-bedrag {
    font-size: 3em;
    font-weight: bold;
    color: #2b8000;
}

.opgehaald-label {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.voortgangs-balk-container {
    background-color: #e0e0e0;
    border-radius: 20px;
    height: 25px;
    position: relative;
    overflow: hidden;
}

.voortgangs-balk-gevuld {
    background-color: #2b8000;
    height: 100%;
    border-radius: 20px;
    /* De cruciale animatie-regel: */
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
		width: 0%; 
}

.voortgang-percentage {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

.doel-bedrag {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

#crowdfund-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

#scouting-crowdfund-widget .donatie-info {
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
	color: #666; /* Kleur toegevoegd die je eerder had */
}

#scouting-crowdfund-widget .donatie-info:hover {
    text-decoration: underline;
    background-color: rgba(0,0,0,0.05);
}