/* Logo styles */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #e9f0fa;
    color: #223a7a;
}
.pkkmb-header {
    width: 100%;
    background: linear-gradient(90deg, #223a7a 80%, #fbc02d 100%);
    color: #fff;
    padding: 18px 0 10px 0;
    box-shadow: 0 2px 12px rgba(34,58,122,0.10);
    margin-bottom: 0;
}
.header-content {
    max-width: 350px;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2px;
}
.header-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.container {
    width: 70vw;
    max-width: 900px;
    min-width: 320px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(34,58,122,0.10);
    padding: 36px 32px 28px 32px;
    border: 2.5px solid #fbc02d;
}
.logo {
    display: block;
    /* margin: 0 auto 18px auto; */
    width: 90px;
}
.logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #1a237e 80%, #223a7a 100%);
    padding: 18px 0 14px 0;
    border-radius: 14px 14px 0 0;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(34,58,122,0.10);
}

/* Hilangkan garis bawah pada link logo */
a.logo-header, a.left-logo, a.right-logo {
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none;
}
.logo-bar .logo {
    width: 70px;
    height: auto;
    margin: 0;
    background: none;
    box-shadow: none;
}
h2 {
    text-align: center;
    color: #223a7a;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.subtitle {
    text-align: center;
    color: #fbc02d;
    font-weight: 700;
    margin-bottom: 26px;
    font-size: 1.1rem;
}
.search-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 22px;
}
input[type=text] {
    padding: 11px 16px;
    width: 260px;
    border: 2px solid #223a7a;
    border-radius: 7px;
    font-size: 1rem;
    outline: none;
    background: #f7fafc;
    color: #223a7a;
    transition: border 0.2s;
}
input[type=text]:focus {
    border: 2px solid #fbc02d;
    background: #fffde7;
}
button {
    padding: 11px 26px;
    background: linear-gradient(90deg, #223a7a 80%, #fbc02d 100%);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(34,58,122,0.10);
    transition: background 0.2s;
}
button:hover {
    background: linear-gradient(90deg, #223a7a 60%, #fbc02d 100%);
    color: #fffde7;
}
table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(34,58,122,0.08);
}
th, td {
    padding: 12px 13px;
    text-align: center;
}
th {
    background: linear-gradient(90deg, #223a7a 80%, #fbc02d 100%);
    color: #fff;
    font-weight: 800;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
tr:nth-child(even) td {
    background: #f0f4ff;
}
tr:hover td {
    background: #fffde7;
}
a {
    color: #223a7a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1.5px dotted #fbc02d;
    transition: color 0.2s;
}
a:hover {
    color: #fbc02d;
}
#result {
    margin-top: 28px;
}
