/* ================================
   GLOBAL BACKGROUND
================================ */
body {
    background-color: #f5f7fa !important;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    background-color: #2196F3 !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar a {
    color: #fff !important;
}

.navbar-nav > li > a:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* highlight active menu */
.navbar-nav > .active > a {
    background: rgba(0,0,0,0.15) !important;
    color: #fff !important;
}

/* ================================
   BUTTONS
================================ */
.btn-primary,
.btn-default,
.btn-success,
.btn-info {
    background-color: #2196F3 !important;
    border-color: #2196F3 !important;
    color: #fff !important;
    border-radius: 6px;
}

.btn-primary:hover,
.btn-default:hover {
    background-color: #1976D2 !important;
    border-color: #1976D2 !important;
}

/* ================================
   PANELS / CARDS
================================ */
.panel,
.card,
.well {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 8px;
}

/* Panel heading */
.panel-heading {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eaeaea !important;
}

/* ================================
   INPUTS & FORM FIELDS
================================ */
.form-control {
    border: 1px solid #d9dfe6 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #2196F3 !important;
    box-shadow: 0 0 5px rgba(33,150,243,0.25) !important;
}

/* ================================
   DROPDOWNS
================================ */
.dropdown-menu {
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.dropdown-menu > li > a:hover {
    background: #2196F3 !important;
    color: #fff !important;
}

/* ================================
   CATEGORY / SERVICE HEADERS
================================ */
.panel-heading,
.list-group-item.active,
.category-item {
    background-color: #2196F3 !important;
    color: #fff !important;
}

/* ================================
   TABLES
================================ */
.table > thead > tr {
    background: #2196F3 !important;
    color: #fff !important;
}

.table > tbody > tr:hover {
    background: rgba(33,150,243,0.08) !important;
}

/* ================================
   SMALL UI ELEMENTS
================================ */
.badge {
    background-color: #2196F3 !important;
}

.navbar-icon {
    color: #fff !important;
}

.alert {
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* =======================================================
   FIX CARD STYLES — OVERRIDE PERFECTPANEL INTERFERENCE
======================================================= */

/* Base card */
.neworder-card {
    background: #ffffff !important;
    border-radius: 14px !important;
    padding: 22px 26px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    border: none !important;
    min-height: 95px;
}

/* Icon */
.neworder-card .card-icon i,
.neworder-card .card-icon {
    color: #2196F3 !important;
    font-size: 32px !important;
    line-height: 1 !important;
}

/* Title */
.neworder-card .card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin: 0 !important;
}

/* Subtitle */
.neworder-card .card-subtitle {
    font-size: 14px !important;
    color: #555 !important;
    margin-top: 4px !important;
}

/* Make sure the grid spacing stays clean */
.neworder-cards-wrapper .col-md-4 {
    padding-bottom: 15px !important;
}

.neworder-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08) !important;
    transition: 0.25s ease;
}

/* CATEGORY HEADER */
.category-row td {
    background: #2196F3 !important;
    color: #fff !important;
    font-weight: 700;
    padding: 12px !important;
}

/* SERVICE ROW */
#service-table tbody tr:hover {
    background: rgba(33,150,243,0.06) !important;
}

/* ============================
   SERVICE TABLE — MODERN UI
============================ */

.svc-table-wrapper {
    padding: 0 !important;
    border-radius: 10px !important;
}

.svc-table thead tr {
    background: #2196F3 !important;
    color: #fff !important;
}

.svc-category-row td {
    background: #E9F3FF !important;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 15px !important;
}

.svc-service-row td {
    vertical-align: middle !important;
    padding: 16px 12px !important;
}

.svc-id {
    font-weight: 700;
}

.svc-copy {
    cursor: pointer;
    margin-left: 6px;
    color: #2196F3;
}

.svc-copy:hover {
    color: #0d6efd;
}

/* Description collapse box */
.svc-desc-row td {
    background: #fafafa !important;
}

.svc-desc-box {
    padding: 15px 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-size: 14px;
}

/* View Details button */
.svc-details-btn {
    padding: 5px 10px !important;
    border-radius: 6px !important;
}

/* ============================
   FULL WIDTH PREMIUM TABLE
============================ */
.service-container {
    max-width: 95% !important;
}

@media (min-width: 1400px) {
    .service-container {
        max-width: 85% !important;
    }
}

.svc-table-wrapper {
    width: 100% !important;
}

/* ======================================
   FIX COPY BUTTON POSITION BESIDE ID
====================================== */

/* Bungkus cell ID biar jadi flex */
#service-table td[data-filter-table-service-id] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;   /* jarak antara nomor & ikon copy */
}

/* Ikon copy — konsisten ukuran dan sejajar */
#service-table td[data-filter-table-service-id] .fa,
#service-table td[data-filter-table-service-id] .fal,
#service-table td[data-filter-table-service-id] .far {
    font-size: 16px !important;
    color: #2196F3 !important;
    cursor: pointer !important;
    margin: 0 !important;
}

/* Hover biar lebih premium */
#service-table td[data-filter-table-service-id] .fa:hover {
    opacity: 0.7;
}

.login-intro {
  text-align: center;
  margin-bottom: 35px;
}

.login-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.login-badge-inline {
  background: hwb(204 0% 0%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Headline utama */
.headline-top {
  font-size: 34px;      /* sebelumnya ~26 */
  font-weight: 800;
  color: #111;
}

/* Highlight biru */
.headline-main {
  font-size: 30px;      /* sebelumnya ~30 */
  font-weight: 900;
  color: #0d6efd;
  line-height: 1.15;
}

/* Deskripsi */
.login-desc {
  margin-top: 22px;
  max-width: 760px;
  font-size: 15px;      /* sebelumnya ~14.5 */
  color: #111;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .headline-top {
    font-size: 24px;
  }

  .headline-main {
    font-size: 30px;
  }

  .login-desc {
    font-size: 14.5px;
  }
}


.manual-box {
  display: none;
  margin-top: 20px;
}

.manual-status {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}

/* ===== PAYMENT VIEW ===== */

.payment-view {
  display: none;
  text-align: center;
}

.payment-amount {
  margin-top: 10px;
  font-size: 14px;
}

.payment-amount div {
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
}

.qr-box {
  margin: 20px 0;
}

.qr-box img {
  width: 240px;
  height: 240px;
}

.payment-warning {
  margin: 15px 0;
  font-size: 13px;
  color: #b71c1c;
  background: #fdecea;
  padding: 10px;
  border-radius: 4px;
}

.payment-expired {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 10px;
}
