
/* ===== FULL WIDTH HEADER ===== */
.pkp_structure_head {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== HILANGKAN BATAS CONTAINER ===== */
.pkp_structure_content,
.pkp_structure_footer {
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER BACKGROUND FULL ===== */
.pkp_site_name_wrapper {
    width: 100%;
    background: #ffffff; /* atau ganti warna kamu */
}

/* ===== NAVIGATION FULL WIDTH ===== */
.pkp_navigation_primary_wrapper {
    width: 100%;
    margin: 0;
}

/* ===== LOGIN AND REGISTER BUTTONS ===== */
.auth-links {
   display: flex;
   justify-content: center;   /* Menempatkan tombol di tengah */
   align-items: center;
   margin-top: 20px;           /* Memberikan jarak dengan konten di bawahnya */
}

.auth-button {
   background-color: #1E3A5F; /* Warna latar belakang tombol */
   color: white;              /* Warna teks putih */
   font-size: 16px;            /* Ukuran font */
   font-weight: bold;          /* Teks tebal */
   padding: 10px 20px;         /* Padding dalam tombol */
   border-radius: 5px;         /* Sudut tombol melengkung */
   text-decoration: none;      /* Menghapus garis bawah */
   margin: 0 15px;             /* Jarak antar tombol */
   transition: background-color 0.3s ease;  /* Efek transisi saat hover */
}

.auth-button:hover {
   background-color: #3B82F6;  /* Warna tombol berubah saat hover */
}
