.content-padding {
    max-width: 600px;
    margin: auto;
    padding: 15px;
}
.detail-header {
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.detail-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay gelap */
    z-index: 1;
}
.detail-content {
    position: relative;
    z-index: 2;
}
.detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    border: 4px solid white;
}

/* Styling Kampanye Card */
.campaign-card {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}
.campaign-card:hover {
    transform: translateY(-3px);
}
.campaign-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.progress-bar-primary {
    background-color: #00b34a; /* Warna hijau donasi */
}
.campaign-title {
    font-size: 1.1rem;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.campaign-info-text {
    font-size: 0.8rem;
}