/* Ubah font agar lebih modern */
body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa; /* Warna latar belakang */
    color: #333; /* Warna teks utama */
}

/* Header Styling */
.pkp_site_name {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3; /* Biru modern */
}

/* Navbar Styling */
.navbar {
    background-color: #0056b3; /* Biru modern */
    border-radius: 8px;
}

.navbar a {
    color: white !important;
    font-weight: bold;
}

/* Tombol Primary */
.button, input[type="submit"] {
    background-color: #007bff; /* Warna biru */
    border-radius: 6px;
    padding: 10px 15px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover, input[type="submit"]:hover {
    background-color: #0056b3; /* Biru lebih gelap saat hover */
}

/* Card Style untuk Artikel */
.obj_article_summary {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background-color: white;
}

/* Footer Styling */
#footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}
