#breadcrumb-header {
    background-color: #1C74BC; /* Gunakan warna brand */
    color: white;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    padding: 0;
}

.breadcrumb-item.active {
    color: #FFD700; /* Tambahkan warna emas untuk breadcrumb aktif */
}

.btn-primary {
    background-color: #1C74BC;
    border: none;
}

.btn-secondary {
    background-color: #E0E0E0;
    color: #1C74BC;
    border: none;
}

.btn:hover {
    filter: brightness(90%);
}

#link-event{
    text-decoration: none;
    color: black;
}
.card {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
h1, h2, h3, h5 {
    font-family: 'Poppins', sans-serif; /* Gunakan Google Font */
}

p, a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.card-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.card-body{
    padding-top: 1rem;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    padding-right: 0.5rem;
    border-radius: 5px;
}
@media (max-width: 768px) {
    #breadcrumb-header {
        text-align: left;
    }

    .card {
        display: flex;
        flex-direction: column;
    }

    .card-body {
        padding: 1rem;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    h1 {
        font-size: 1.8rem;
    }
}
.pagination .page-item .page-link {
    border: none;
    background-color: #E0E0E0;
    color: #1C74BC;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #1C74BC;
    color: white;
}

.pagination .page-link:hover {
    background-color: #FFD700;
    color: white;
}

