 body{
    font-family:Inter, Arial, sans-serif;
    background:#f3f3f3;
    margin:0;
    padding:25px;
    width:50%;
    margin-left:auto;
    margin-right:auto;
    max-width:650px;
    min-width:320px;
    box-shadow:0 0 25px rgba(0,0,0,0.07);
    background:#fafafa;
    border-radius:20px;
    color:#111;
}
h2,h3{font-weight:700;letter-spacing:-0.3px}
.box{
    background:#fff;
    padding:20px;
    margin-bottom:22px;
    border-radius:16px;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}
label{font-weight:700;margin-bottom:5px;display:block}
input,select{
    width:100%;padding:13px;font-size:15px;border:1px solid #ccc;
    border-radius:14px;margin-top:6px;background:#fafafa;transition:.2s;
}
input:focus,select:focus{border-color:#000;background:#fff;outline:none}
button{
    background:#111;color:#fff;padding:13px;width:100%;border:none;
    border-radius:14px;margin-top:12px;font-size:16px;font-weight:600;
    cursor:pointer;transition:.2s;
}
button:hover{background:#333}
.success{color:#0B8A00;font-weight:700}
.error{color:#D00000;font-weight:700}

/* STATUS COLORS */
.status-pending { color:#E6A100; font-weight:700; }
.status-progress { color:#007bff; font-weight:700; }
.status-completed { color:#0B8A00; font-weight:700; }
.status-cancelled { color:#D00000; font-weight:700; }
.status-unknown { color:#555; font-weight:700; }

/* Menu Navigasi */
.menu-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 22px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.menu-link {
    flex: 1;
    min-width: 120px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    padding: 15px 10px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.menu-link:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
.menu-link.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Konten halaman */
.page-content {
    display: block;
}

/* Cart count badge */
.cart-count {
    background: #D00000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}

/* Link styles */
.full-link {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
    font-size: 13px;
}
.full-link:hover {
    text-decoration: underline;
}

/* History item styles */
.history-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    font-size: 14px;
}
.history-item div {
    margin-bottom: 5px;
}
.history-item b {
    color: #333;
}

/* Cart item styles - DIPERBAIKI */
.cart-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    font-size: 14px;
    position: relative;
    padding-right: 50px; /* Ruang untuk tombol remove */
}
.cart-item div {
    margin-bottom: 5px;
}
.cart-item b {
    color: #333;
}
.remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    color: #D00000;
    border: 1px solid #D00000;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    min-width: 70px;
}
.remove-btn:hover {
    background: #D00000;
    color: white;
}

/* Notifikasi dalam box */
.box-notification {
    padding: 12px;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    position: relative;
}
.box-notification.success {
    background: rgba(11, 138, 0, 0.1);
    color: #0B8A00;
    border-left: 4px solid #0B8A00;
}
.box-notification.error {
    background: rgba(208, 0, 0, 0.1);
    color: #D00000;
    border-left: 4px solid #D00000;
}
.box-notification.info {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-left: 4px solid #007bff;
}
.close-notif {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-notif:hover {
    background: rgba(0,0,0,0.1);
}

/* Home page styles */
.home-box {
    text-align: center;
    padding: 30px 20px;
}
.home-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.home-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}
.home-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.home-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}
.stat-label {
    font-size: 14px;
    color: #666;
}

/* Quantity options */
.quantity-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.quantity-option {
  padding: 10px;
  text-align: center;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
.quantity-option:hover {
  background: #e9e9e9;
}
.quantity-option.selected {
  background: #111;
  color: white;
  border-color: #111;
}

/* Service selection */
.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.service-option {
  padding: 15px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.service-option:hover {
  background: #e9e9e9;
}
.service-option.selected {
  background: #111;
  color: white;
  border-color: #111;
}
.service-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
.service-details {
  font-size: 14px;
  color: #666;
}
.service-option.selected .service-details {
  color: #ccc;
}

/* Input group styling */
.input-group {
  margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 12px;
}