/* Styling untuk Formulir */
.pk-form-wrapper {
    background-color: #f9d5a7;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling untuk Label */
.pk-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
}

/* Styling untuk Input Form */
.pk-form-wrapper input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Styling untuk Button */
.pk-form-wrapper button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.pk-form-wrapper button:hover {
    background-color: #45a049;
}

/* Styling untuk Hasil Gugus */
.pk-result {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 1.1em;
    margin-top: 20px;
    text-align: left;
}

.pk-result.tidak-ditemukan {
    background-color: #fff1f1;
    border-color: #e5a0a0;
    color: #c00;
}

.pk-result p {
    margin: 0 0 10px;
}

.pk-result .whatsapp-link {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.pk-result .whatsapp-link:hover {
    background-color: #1EBE57;
}

/* FIX untuk Kalender Datepicker agar muncul di atas elemen lain */
.ui-datepicker {
    z-index: 9999 !important;
}