/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #202124;
}

/* ========== HEADER ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #dadce0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  max-width: 55%;
  margin: auto;
}

.header-search {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 16px;
}

.header-search input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #dadce0;
  border-radius: 24px;
  font-size: 14px;
}

/* ========== LOGO ========== */
.logo-google-like {
  display: flex;
  font-size: 32px;
  font-weight: 700;
}
.logo-google-like .p{color:#1a73e8}
.logo-google-like .e{color:#ea4335}
.logo-google-like .r{color:#fbbc05}
.logo-google-like .s{color:#1a73e8}
.logo-google-like .i{color:#34a853}
.logo-google-like .r2{color:#ea4335}
.logo-google-like .a{color:#1a73e8}

/* ========== PROFILE ========== */
.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-wrapper {
  position: relative;
}

.profile-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid #dadce0;
}

.profile-wrapper:hover .profile-dropdown {
  display: block;
}

.profile-dropdown a {
  display: block;
  padding: 8px 12px;
  color: #202124;
  text-decoration: none;
}

/* ========== CONTENT ========== */
.content {
  max-width: 55%;
  margin: 24px auto;
}

.item {
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foto-user {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.nama-user {
  font-size: 14px;
  color: #5f6368;
}
 
.judul-paket{
  margin : 10px 0px;
}

.judul-paket a {
  font-size: 18px;
  color: #1a0dab;
  text-decoration: none;
}

.thumbnail img {
  width: 100%;
  max-width: 360px;
  margin: 8px 0;
  border-radius: 8px;
}

.info {
  font-size: 13px;
  color: #4d5156;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.pagination a {
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #dadce0;
  text-decoration: none;
  color: #1a73e8;
}

.pagination a.active {
  background: #1a73e8;
  color: #fff;
}


.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.wa-float img {
  width: 32px;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header, .content {
    max-width: 100%;
    padding: 0 12px;
  }
  .logo-google-like {
    font-size: 24px;
  }
}
