:root {
  --gold: #c19a5b;
  --gold-dark: #b8935a;
  --gold-light: #d4b483;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --green-bg: #c8f0da;
  --green-text: #1f8a4c;
  --red-bg: #f7d4d4;
  --red-text: #c94040;
  --gray-bg: #e9e9ea;
  --border: #e7e0d4;
  --row-border: #eeeeee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
}

.app {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
}

.brand {
  text-align: center;
  margin-bottom: 36px;
  cursor: pointer;
}

.brand img,
.brand-logo {
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* .brand-name {
  font-family: "Georgia", serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 22px;
  margin-top: 6px;
  font-weight: 600;
  line-height: 1.15;
} */

.brand-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: black;
  text-transform: uppercase;
  margin-top: 2px;
}

.dash-title {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.nav-item:hover {
  background: #f7f2e8;
}

.nav-item.active {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.sidebar-bottom {
  margin-top: auto;
}

.signout {
  width: 100%;
  background: var(--gold-light);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.version {
  text-align: center;
  color: #b8b0a0;
  font-size: 12px;
  margin-top: 10px;
}

/* Main */
.main {
  height: 100vh;
  overflow-y: auto;
  padding: 28px 32px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* ---- HOME ---- */
.hero {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  border-radius: 16px;
  padding: 32px 40px;
  color: #fff;
}

.hero h1 {
  font-family: "Georgia", serif;
  font-size: 38px;
  margin: 0 0 10px 0;
}

.hero p {
  margin: 0 0 18px 0;
  opacity: 0.92;
  font-size: 15px;
}

.hero-search {
  background: #fff;
  width: 100%;
  border-radius: 24px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.hero-search .msg {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 1fr;
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

@media (max-width: 1400px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
}

.card h2 {
  color: var(--gold);
  font-family: "Georgia", serif;
  font-size: 22px;
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge {
  background: #33c46f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 14px;
}

.overview-line {
  font-size: 14px;
  margin: 6px 0;
  color: #333;
}

.overview-line a {
  color: #3b7ddb;
  text-decoration: none;
}

.einv-label {
  font-weight: 700;
  font-size: 14px;
  margin: 18px 0 6px 0;
}

.qr-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.qr-box:hover {
  transform: translateY(-3px);
  border-color: var(--gold, #d4b483);
  box-shadow: 0 8px 24px rgba(212, 180, 131, 0.2);
  background: rgba(212, 180, 131, 0.05);
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.qr-code-wrapper canvas,
.qr-code-wrapper img,
.qr-code-wrapper svg {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.qr-box-badge {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold, #d4b483);
  background: rgba(212, 180, 131, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.qr-box:hover .qr-box-badge {
  background: rgba(212, 180, 131, 0.25);
  color: #ffffff;
}

.stat-label {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 12px 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.stat {
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  padding: 16px 6px;
  text-align: center;
}

.stat .num {
  font-size: 26px;
  font-weight: 800;
}

.stat .num small {
  font-size: 14px;
  font-weight: 600;
}

.stat .lbl {
  font-size: 12px;
  margin-top: 2px;
}

.stat.green {
  background: var(--green-bg);
  color: var(--green-text);
}

.stat.red {
  background: var(--red-bg);
  color: var(--red-text);
}

.stat.gray {
  background: var(--gray-bg);
  color: #444;
}

.wish-block h3 {
  text-align: center;
  font-size: 15px;
  margin: 14px 0 10px 0;
}

.wish-bar {
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

/* ---- GUESTLIST ---- */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.page-header h1 {
  font-family: "Georgia", serif;
  font-size: 30px;
  color: #222;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: #333;
}

.btn-outline:hover {
  background: #f7f2e8;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1.4fr;
  gap: 20px;
  margin-bottom: 22px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}

.stat-card-title {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 14px;
}

.stat-card-inner {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.stat-mini .num {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  text-align: center;
}

.stat-mini .num.green {
  color: var(--green-text);
}

.stat-mini .num.red {
  color: var(--red-text);
}

.stat-mini .lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  text-align: center;
}

.filter-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 18px;
}

.filter-row1 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.filter-row1 label {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.filter-row1 input {
  flex: 1;
  max-width: 400px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
}

.filter-row2 {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.filter-btns {
  display: flex;
  gap: 10px;
}

.chip-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  border-color: var(--gold);
}

.chip-btn.active {
  background: rgba(193, 154, 91, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.chip-select {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.chip-select:hover,
.chip-select:focus {
  border-color: var(--gold);
}

.chip-select.active {
  background: rgba(193, 154, 91, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.show-hide {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

table.guest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

table.guest-table thead th {
  text-align: left;
  padding: 10px 8px;
  color: #444;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

table.guest-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--row-border);
  color: #333;
}

table.guest-table tbody tr:hover {
  background: #faf8f3;
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.pill-einvite {
  background: #2fae66;
}

.pill-pending {
  background: #8a8a8a;
}

.pill-yes {
  background: #33c46f;
}

.tag {
  background: #f2ede0;
  color: #7a6a45;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 13px;
  color: #555;
}

.table-footer .right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

select.rows-select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
}

/* ---- CHECKLIST PAGE & CRUD ---- */
.checklist-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.checklist-stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.checklist-stat-card .val {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.checklist-stat-card .val.green {
  color: var(--green-text);
}

.checklist-stat-card .val.red {
  color: var(--red-text);
}

.checklist-stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Progress bar styling */
.progress-container {
  width: 100%;
  background-color: var(--gray-bg);
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
  margin: 10px 0 6px 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  transition: width 0.4s ease;
}

.priority-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.priority-high {
  background: var(--red-bg);
  color: var(--red-text);
}

.priority-medium {
  background: #fef0d5;
  color: #b8860b;
}

.priority-low {
  background: #e3f2fd;
  color: #1976d2;
}

.category-badge {
  background: #f4ede2;
  color: #8c734b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}

.task-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border-color: var(--gold-light);
}

.task-item.completed {
  background: #fafaf8;
}

.task-item.completed .task-title {
  text-decoration: line-through;
  color: var(--text-muted);
}

.task-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.task-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.task-title {
  font-weight: 600;
  font-size: 15px;
  color: #222;
}

.task-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.task-due {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.task-note {
  font-size: 12.5px;
  color: #666;
  margin-top: 2px;
  font-style: italic;
}

.task-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-icon {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: #f7f2e8;
  border-color: var(--gold-light);
}

.btn-icon.delete:hover {
  background: var(--red-bg);
  color: var(--red-text);
  border-color: var(--red-bg);
}

/* Home Widget Checklist Styling */
.widget-checklist-card {
  display: flex;
  flex-direction: column;
}

.widget-progress-text {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.widget-task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.widget-task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: #faf8f3;
  border: 1px solid var(--border);
  font-size: 13px;
}

.widget-task-item .wtask-left {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.widget-task-item .wtask-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.widget-task-item.completed .wtask-title {
  text-decoration: line-through;
  color: var(--text-muted);
}

.view-all-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  cursor: pointer;
  text-decoration: none;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25 ease;
  backdrop-filter: blur(2px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  padding: 28px 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-20px);
  transition: transform 0.25s ease;
  border: 1px solid var(--border);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.modal-header h3 {
  margin: 0;
  font-family: "Georgia", serif;
  color: var(--gold-dark);
  font-size: 22px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.close-btn:hover {
  color: #222;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.modal-footer .btn {
  text-align: center;
  justify-content: center;
}

/* ---- WISHES ---- */
.wishes-title {
  font-family: "Georgia", serif;
  font-size: 30px;
  margin: 0 0 18px 0;
}

.filter-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-pill {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
}

.filter-pill.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.wishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.wish-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wish-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.wish-card .wtop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}

.wish-card .wname {
  font-weight: 700;
  font-size: 14px;
}

.wish-card .wdate {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.wish-card .wtext {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Wish Detail Modal (Matching Reference Image) */
.wish-detail-card {
  background: #ffffff;
  border-radius: 14px;
  width: 92%;
  max-width: 450px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  transform: translateY(-20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .wish-detail-card {
  transform: translateY(0);
}

.wish-detail-header {
  background: #f1f4f9;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.wish-detail-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  text-align: center;
  font-family: inherit;
}

.wish-detail-header .close-btn {
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #64748b;
  cursor: pointer;
}

.wish-detail-header .close-btn:hover {
  color: #0f172a;
}

.wish-detail-body {
  padding: 24px;
  background: #ffffff;
}

.wish-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}

.wish-detail-author {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.45;
  flex: 1;
}

.wish-detail-date {
  font-size: 13px;
  color: #64748b;
  white-space: nowrap;
  font-weight: 500;
}

.wish-detail-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 24px;
  white-space: pre-wrap;
  word-break: break-word;
}

.wish-detail-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.btn-danger-wish {
  background: #ef4444;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
  transition: all 0.2s ease;
}

.btn-danger-wish:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* line-height: 1.5;
  flex: 1;
} */

.wish-card .wicon {
  align-self: flex-end;
  color: #aaa;
  margin-top: 8px;
}

/* ==========================================
   AUTHENTICATION OVERLAY STYLES
   ========================================== */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 18, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.auth-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.auth-brand-logo {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
}

.auth-title {
  font-family: "Georgia", serif;
  font-size: 22px;
  color: var(--text-dark);
  margin: 0 0 6px 0;
  font-weight: 600;
}

.auth-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.auth-field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.auth-field input:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.btn-auth-submit {
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-auth-submit:hover {
  background: var(--gold-dark);
}

.auth-error-msg {
  display: none;
  background: #f7d4d4;
  color: #c94040;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: center;
}

/* ==========================================
   DEDICATED PURE WHITE LOGIN PAGE STYLES
   ========================================== */
body.login-page {
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 0;
}

.login-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.login-container .brand-logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}

.login-greeting {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.login-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.error-banner {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #c94040;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.error-banner.hidden {
  display: none !important;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  text-align: left;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.input-wrap {
  position: relative;
}

.form-field input {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fafaf9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: none;
}

.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0a898;
  pointer-events: none;
}

.btn-toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.btn-toggle-password:hover {
  color: var(--gold);
}

.btn-sign-in {
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: none;
  letter-spacing: 0.3px;
}

.btn-sign-in:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-sign-in:active {
  transform: translateY(0);
}

.btn-sign-in:disabled {
  background: #d4b483;
  cursor: not-allowed;
  transform: none;
}

.login-footer-note {
  text-align: center;
  font-size: 12px;
  color: #b0a898;
  margin-top: 28px;
}

/* ==========================================
   REUSABLE CUSTOM DIALOG / ALERT MODULE STYLES
   ========================================== */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 18, 25, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.dialog-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dialog-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.25s ease;
}

.dialog-overlay.active .dialog-card {
  transform: scale(1) translateY(0);
}

.dialog-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  background: rgba(193, 154, 91, 0.12);
  color: var(--gold);
}

.dialog-icon-wrapper.danger {
  background: #fef2f2;
  color: #c94040;
}

.dialog-icon-wrapper.warning {
  background: #fffbeb;
  color: #d97706;
}

.dialog-icon-wrapper.success {
  background: #f0fdf4;
  color: #16a34a;
}

.dialog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.dialog-message {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.dialog-footer {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.dialog-footer button {
  flex: 1;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-danger-confirm {
  background: #c94040;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(201, 64, 64, 0.25);
}

.btn-danger-confirm:hover {
  background: #b23333;
  transform: translateY(-1px);
}

/* ==========================================
   CUSTOMIZE GUEST VIEW PAGE STYLES
   ========================================== */

.customize-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.customize-section-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.customize-section-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.section-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--row-border);
}

.section-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f7f2e8;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.section-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-card-sub {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.form-group-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-col label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group-col label .req {
  color: var(--red-text);
}

.form-control-input,
.form-control-textarea,
.form-control-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #faf9f6;
  outline: none;
  transition: all 0.2s ease;
}

.form-control-input:focus,
.form-control-textarea:focus,
.form-control-select:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: none;
}

.helper-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Map Preview Box */
.map-preview-box {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #f7f5f0;
  position: relative;
  min-height: 250px;
}

.map-preview-header {
  background: #eae4d8;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-preview-iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* Gallery Images Manager */
.gallery-input-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-remove-url {
  background: var(--red-bg);
  color: var(--red-text);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-remove-url:hover {
  background: #f1b5b5;
}

.btn-add-gallery-row {
  background: rgba(193, 154, 91, 0.1);
  color: var(--gold);
  border: 1px dashed var(--gold);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.btn-add-gallery-row:hover {
  background: var(--gold);
  color: #ffffff;
}

.gallery-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.thumb-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Actions Bar */
.save-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: sticky;
  bottom: 24px;
  z-index: 100;
}

.save-bar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.save-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-reset-default {
  background: #f0ebe1;
  color: #555;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset-default:hover {
  background: #e2dac9;
  color: #222;
}

/* Success Toast Alert */
.customize-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #10b981;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.customize-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Guest View Map & Gallery Modern Additions */
.guest-map-iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: none;
}

.guest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.guest-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 180, 131, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.guest-gallery-item:hover {
  transform: none;
  box-shadow: none;
}

.guest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Mobile Layout Selector Cards */
.gallery-layout-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.layout-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.layout-option-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 154, 91, 0.15);
}

.layout-option-card.active {
  border-color: var(--gold);
  background: rgba(193, 154, 91, 0.08);
  box-shadow: 0 0 0 2px rgba(193, 154, 91, 0.25);
}

.layout-option-card .layout-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.layout-option-card .layout-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.layout-option-card .layout-desc {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Drag & Drop File Upload Area */
.upload-dropzone {
  border: 2px dashed var(--gold);
  border-radius: 16px;
  background: rgba(193, 154, 91, 0.04);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  background: rgba(193, 154, 91, 0.1);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.dropzone-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  background: #f7f2e8;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropzone-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.dropzone-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.dropzone-badge {
  display: inline-block;
  margin-top: 10px;
  background: #e6f4ea;
  color: #137333;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Gallery Photo Thumbnails with Delete Overlay */
.gallery-thumb-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #f7f5f0;
}

.gallery-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb-card:hover img {
  transform: scale(1.05);
}

.thumb-delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(201, 64, 64, 0.85);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.thumb-delete-btn:hover {
  background: #c94040;
  transform: scale(1.15);
  opacity: 1;
}

.thumb-size-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ==========================================
   CUSTOMIZE SPLIT LAYOUT & LIVE MOBILE PREVIEW
   ========================================== */
.customize-split-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 1250px) {
  .customize-split-layout {
    grid-template-columns: 1fr;
  }
}

.customize-form-col {
  min-width: 0;
}

/* Part 1 & Part 2 Overlay Image Config Cards */
.overlay-image-config-card {
  background: #fdfbf7;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.25s ease;
}

.overlay-image-config-card:hover {
  border-color: var(--gold);
}

.overlay-config-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.overlay-config-body {
  display: flex;
  gap: 16px;
  align-items: center;
}

.overlay-thumb-box {
  width: 85px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f0ebe1;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.overlay-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-inputs-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.overlay-inputs-col label {
  font-size: 12px;
  font-weight: 700;
  color: #444;
}

.input-with-upload {
  display: flex;
  gap: 8px;
}

.input-with-upload input {
  flex: 1;
}

.btn-upload-file-small {
  background: #f7f2e8;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-upload-file-small:hover {
  background: var(--gold);
  color: #ffffff;
}

/* Sticky Right Column Preview Wrapper */
.customize-preview-col {
  position: sticky;
  top: 24px;
}

.phone-preview-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-preview-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.phone-preview-header-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Realistic Smartphone Device Frame (iPhone 16 Pro Style) */
.phone-device-frame {
  width: 360px;
  height: 720px;
  background: #1c1c1e;
  border-radius: 48px;
  padding: 12px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 0 2px 2px rgba(255, 255, 255, 0.2);
  border: 4px solid #3a3a3c;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island Notch */
.phone-notch {
  width: 95px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.notch-camera {
  width: 9px;
  height: 9px;
  background: #111;
  border-radius: 50%;
  border: 1px solid #222;
}

/* Phone Section View Switcher Tabs */
.phone-view-tabs {
  display: flex;
  background: #2c2c2e;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-top: 32px;
  margin-bottom: 8px;
  z-index: 10;
}

.phone-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #a1a1a6;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.phone-tab-btn.active {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(193, 154, 91, 0.4);
}

/* Phone Screen Container & Iframe */
.phone-screen-container {
  flex: 1;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #110305;
  position: relative;
}

.phone-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.phone-preview-iframe::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Home Indicator Bar */
.phone-home-indicator {
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  margin: 8px auto 2px auto;
}