/**
 * Donatie Voortgang - Styles
 */

/* ========================================
   HORIZONTALE BALK
   ======================================== */
.dp-bar {
    --dp-progress: 0%;
    --dp-color: #22c55e;
    
    width: 100%;
    height: 28px;
    background: #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.dp-bar__fill {
    height: 100%;
    width: var(--dp-progress);
    background: var(--dp-color);
    border-radius: 14px;
    transition: width 0.6s ease;
}

.dp-bar__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.dp-bar__info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.dp-bar__current {
    font-weight: 600;
    color: var(--dp-color, #22c55e);
}

/* ========================================
   CIRKEL PROGRESS
   ======================================== */
.dp-circle {
    --dp-size: 160px;
    --dp-color: #3b82f6;
    
    width: var(--dp-size);
    height: var(--dp-size);
    position: relative;
    margin: 0 auto;
}

.dp-circle svg {
    transform: rotate(-90deg);
    display: block;
}

.dp-circle__bg,
.dp-circle__fill {
    fill: none;
}

.dp-circle__bg {
    stroke: #e5e7eb;
}

.dp-circle__fill {
    stroke: var(--dp-color);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
}

.dp-circle__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.dp-circle__percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.dp-circle__label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}

.dp-circle__amounts {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
    color: #666;
}

.dp-circle__amounts strong {
    color: var(--dp-color, #3b82f6);
}
