/* Craigslist-inspired minimal stylesheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

/* Centered container */
.site-nav,
main,
.site-footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Links - Craigslist blue */
a {
  color: #00e;
  text-decoration: underline;
}
a:visited {
  color: #551a8b;
}
a:hover {
  color: #00e;
}

/* Navigation - banner style */
.site-nav {
  background: #e4eaf2;
  border-bottom: 1px solid #ccc;
  padding: 0 20px;
  max-width: none;
}
.nav-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 44px;
}
.site-nav .brand {
  color: #4a5a6a;
  font-size: 24px;
  font-weight: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Tab-style navigation */
.site-nav .nav-tabs {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: -1px;
}
.site-nav .nav-tab {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  color: #4a5a6a;
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-top: 6px;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.site-nav .nav-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.site-nav .nav-tab.active {
  background: #fff;
  border-color: #ccc;
  color: #000;
}
.site-nav .nav-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}

/* Override default nav link styles for tabs */
.site-nav nav a.nav-tab,
.site-nav nav button.nav-tab {
  color: #4a5a6a;
  padding: 8px 20px;
}
.site-nav nav a.nav-tab:hover,
.site-nav nav button.nav-tab:hover {
  text-decoration: none;
}
.site-nav nav a.nav-tab.active {
  color: #000;
}

/* Headers */
h1 {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 15px 0;
}
h2 {
  font-size: 16px;
  font-weight: normal;
  margin: 15px 0 10px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

/* Page header */
.page-header {
  margin-bottom: 20px;
}
.page-header h1 {
  display: inline;
  margin-right: 20px;
}
.breadcrumbs {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 4px;
}
.breadcrumbs a {
  color: #666;
}
.breadcrumbs a:hover {
  color: #333;
}

/* Main content area */
main {
  min-height: 400px;
}

/* Buttons - look like links */
.btn,
.cta {
  color: #00e;
  text-decoration: underline;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.btn:visited,
.cta:visited {
  color: #551a8b;
}
button,
input[type="submit"] {
  font: inherit;
  cursor: pointer;
}

/* Login / Signup */
.login .cta,
.signup .cta {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}
.login .cta:hover,
.signup .cta:hover {
  background: #1a252f;
}

/* Forms */
.field {
  margin-bottom: 10px;
}
.field label {
  display: block;
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 13px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
select,
textarea {
  font: inherit;
  padding: 4px;
  border: 1px solid #999;
  width: 100%;
  max-width: 400px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #00e;
  outline-offset: 1px;
}
.checkbox-field {
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkbox-field input {
  margin: 0;
}
.checkbox-field label {
  display: inline;
  margin: 0;
  font-weight: normal;
}

/* Form sections */
.form-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.form-section:last-of-type {
  border-bottom: none;
}
.form-hint {
  font-size: 12px;
  color: #666;
  margin: 5px 0;
}
.form-actions {
  margin-top: 20px;
}
.form-actions input[type="submit"],
.form-actions button {
  background: #eee;
  border: 1px solid #999;
  padding: 5px 15px;
  margin-right: 10px;
}
.form-actions input[type="submit"]:hover,
.form-actions button:hover {
  background: #ddd;
}
.form-errors {
  background: #fee;
  border: 1px solid #c00;
  padding: 10px;
  margin-bottom: 15px;
  color: #c00;
}
.form-errors ul {
  margin: 5px 0 0 20px;
}

/* Danger zone */
.danger-zone {
  margin-top: 40px;
  border: 1px solid #c00;
  border-radius: 4px;
}
.danger-zone h2 {
  font-size: 14px;
  color: #c00;
  padding: 10px 15px;
  margin: 0;
  border-bottom: 1px solid #c00;
}
.danger-zone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}
.danger-zone-item p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
}
.danger-zone-item strong {
  font-size: 13px;
}
.danger-zone .btn-danger {
  background: #fff;
  color: #c00;
  border: 1px solid #c00;
  padding: 5px 15px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.danger-zone .btn-danger:hover {
  background: #c00;
  color: #fff;
}

/* Notification groups */
.notification-group {
  margin: 10px 0 10px 20px;
}

.toggle-fields-group {
  padding: 10px;
  border-radius: 4px;
}

.toggle-fields-group.disabled {
  background-color: #f0f0f0;
  opacity: 0.5;
  pointer-events: none;
}

/* Monitor list */
.monitors-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.monitor-card {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.monitor-card:last-child {
  border-bottom: none;
}
.monitor-card-header h2 {
  display: inline;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  border: none;
  padding: 0;
}
.monitor-card-body {
  font-size: 13px;
  color: #666;
  margin: 5px 0;
}
.monitor-card-body p {
  display: inline;
  margin: 0;
}
.monitor-card-body .uptime {
  margin-right: 15px;
}
.monitor-card-actions {
  margin-top: 5px;
  font-size: 13px;
}
.monitor-card-actions a,
.monitor-card-actions button,
.monitor-card-actions form {
  display: inline;
  margin-right: 10px;
}
.monitor-card-actions button {
  background: none;
  border: none;
  color: #00e;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

/* Status indicators */
.status {
  font-size: 12px;
  font-weight: bold;
}
.status.up { color: #090; }
.status.down { color: #c00; }
.status.pending { color: #999; }
.status.paused { color: #960; }

.status-badge {
  font-size: 11px;
  text-transform: uppercase;
  margin-left: 8px;
  font-weight: bold;
}
.status-badge.up, .status-badge.active { color: #090; }
.status-badge.down { color: #c00; }
.status-badge.pending { color: #999; }
.status-badge.paused { color: #960; }
.status-badge.keyword { color: #069; }

.monitor-type-badge {
  font-size: 11px;
  color: #666;
  margin-left: 8px;
  text-transform: uppercase;
}

/* Monitor show page */
.monitor-header {
  margin-bottom: 20px;
}
.monitor-title h1 {
  display: inline;
  font-size: 16px;
}
.monitor-meta {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
.monitor-meta p {
  margin: 3px 0;
}
.monitor-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.monitor-actions form {
  display: inline;
}
.action-btn {
  display: inline-block;
  padding: 5px 12px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.action-btn:hover {
  background: #f5f5f5;
}
.action-pause {
  color: #b45309;
  border-color: #b45309;
}
.action-pause:hover {
  background: #b45309;
  color: #fff;
}
.action-resume {
  color: #090;
  border-color: #090;
}
.action-resume:hover {
  background: #090;
  color: #fff;
}
.action-check {
  color: #06c;
  border-color: #06c;
}
.action-check:hover {
  background: #06c;
  color: #fff;
}

/* Uptime stats */
.uptime-stats {
  margin-bottom: 20px;
}
.stats-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-card {
  min-width: 80px;
}
.stat-value {
  font-size: 20px;
  font-weight: bold;
}
.stat-value.good { color: #090; }
.stat-value.warning { color: #960; }
.stat-value.bad { color: #c00; }
.stat-value.neutral { color: #000; }
.stat-label {
  font-size: 12px;
  color: #666;
}
.stat-detail {
  font-size: 11px;
  color: #999;
}

/* Check history bars */
.uptime-chart {
  margin-bottom: 20px;
}
.check-bars {
  display: flex;
  gap: 1px;
  height: 24px;
  margin: 8px 0;
  background: #eee;
}
.check-bar {
  width: 6px;
  height: 100%;
}
.check-bar.up { background: #090; }
.check-bar.down { background: #c00; }
.chart-legend {
  font-size: 12px;
  color: #666;
}
.legend-item {
  margin-right: 20px;
}
.legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  vertical-align: middle;
}
.legend-color.up { background: #090; }
.legend-color.down { background: #c00; }

/* Monitor details */
.monitor-details {
  margin-bottom: 20px;
}
.config-line {
  margin: 4px 0;
  color: #333;
}
.notif-on { color: #090; }
.notif-off { color: #999; }

/* Checks table */
.ping-history {
  margin-bottom: 20px;
}
.checks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.checks-table th,
.checks-table td {
  text-align: left;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}
.checks-table th {
  font-weight: bold;
  background: #f5f5f5;
}
.checks-table tr.down {
  background: #fee;
}

/* Monitor nav */
.monitor-nav {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.monitor-nav a {
  margin-right: 20px;
}

/* Empty state */
.empty-state {
  color: #666;
  padding: 30px 0;
  text-align: center;
}

/* Homepage */
.homepage-hero {
  background: #f0f4f8;
  margin: -10px 0 0 0;
  padding: 40px 20px;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.homepage-hero h1 {
  font-size: 26px;
  color: #2c3e50;
  margin: 0 0 8px 0;
}
.homepage-hero .tagline {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}
.homepage-hero .monitor-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.homepage-hero .monitor-form input[type="url"] {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 15px;
}
.homepage-hero .cta {
  display: inline-block;
  background: #2c3e50;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 24px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.homepage-hero .cta:hover {
  background: #1a252f;
}

/* Monitor type tabs */
.monitor-type-tabs {
  margin: 15px 0;
  display: flex;
  gap: 5px;
}
.monitor-type-tab {
  background: #eee;
  border: 1px solid #ccc;
  padding: 5px 15px;
  cursor: pointer;
  font: inherit;
  color: #00e;
}
.monitor-type-tab.active {
  background: #fff;
  border-bottom-color: #fff;
  color: #000;
  font-weight: bold;
}
.monitor-form-container {
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  padding: 15px;
  margin-top: -1px;
}
.login-required-notice {
  color: #666;
  font-size: 13px;
}

/* Homepage stats */
.homepage-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.homepage-stat .number {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}
.homepage-stat .label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.feature-card {
  padding: 15px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}
.feature-card h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #2c3e50;
}
.feature-card p {
  margin: 0;
  color: #666;
  font-size: 13px;
}

/* CTA section */
.cta-section {
  text-align: center;
  margin: 10px 0 20px 0;
  padding: 25px;
  background: #f0f4f8;
}
.cta-section h2 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #2c3e50;
}
.cta-section p {
  margin: 0 0 15px 0;
  color: #666;
}
.cta-section .btn-primary {
  display: inline-block;
  background: #2c3e50;
  color: #fff !important;
  text-decoration: none;
  padding: 8px 20px;
  border: none;
}
.cta-section .btn-primary:hover {
  background: #1a252f;
}
.cta-section .btn-secondary {
  color: #2c3e50;
}

/* Flash messages */
.flash {
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid;
}
.flash.notice {
  background: #efe;
  border-color: #090;
  color: #060;
}
.flash.alert {
  background: #fee;
  border-color: #c00;
  color: #900;
}

/* Auth pages */
.login,
.signup {
  max-width: 350px;
  margin: 0 auto;
}
.auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}

/* Account pages */
.account-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.account-details dl {
  margin: 0;
}
.account-details dt {
  font-weight: bold;
  margin-top: 8px;
}
.account-details dd {
  margin: 2px 0 0 20px;
  color: #333;
}

/* Members */
.account-members {
  margin-top: 20px;
}
.section-header {
  margin-bottom: 15px;
}
.section-header h2 {
  display: inline;
  margin-right: 20px;
}

/* Role badges */
.role-badge {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
}
.role-badge.owner { color: #4a5a6a; }
.role-badge.admin { color: #008; }
.you-badge {
  font-size: 11px;
  color: #999;
}

/* Settings dropdown */
.account-switcher {
  position: relative;
}
.account-switcher-toggle {
  cursor: pointer;
}
.account-switcher-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 200px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.account-switcher-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.account-switcher:hover .account-switcher-menu {
  display: block;
}
.account-switcher-menu li {
  margin: 0;
  padding: 0;
}
.account-switcher-menu li:hover {
  background: #f5f5f5;
}
.site-nav .account-switcher-menu a {
  display: block;
  padding: 16px 28px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #eee;
}
.site-nav .account-switcher-menu li:last-child a {
  border-bottom: none;
}
.site-nav .account-switcher-menu a:hover {
  text-decoration: none;
}
.account-switcher-menu li.current {
  background: #e4eaf2;
}
.current-indicator {
  font-size: 11px;
  color: #999;
}
.menu-divider {
  border-top: 1px solid #ddd;
  margin: 0;
  padding: 0;
}
.menu-divider:hover {
  background: transparent;
}
.menu-section-label {
  padding: 8px 28px 2px;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
}
.menu-section-label:hover {
  background: transparent;
}
.accounts-explainer {
  color: #666;
  font-size: 13px;
  margin-bottom: 15px;
}
.input-with-suffix .field_with_errors {
  display: inline;
}
.settings-item {
  margin-bottom: 20px;
}
.settings-item h2 {
  margin-bottom: 4px;
}
.settings-item p {
  color: #666;
  font-size: 13px;
}

/* Invitation pages */
.invitation-page {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.invitation-header {
  margin-bottom: 20px;
}
.invitation-details {
  color: #666;
  margin-bottom: 20px;
}
.invitation-actions {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 15px;
}
.invitation-auth-buttons {
  margin-top: 15px;
}
.invitation-auth-buttons a {
  margin: 0 10px;
}
.invitation-expiry {
  font-size: 12px;
  color: #999;
}
.btn-large {
  font-size: 16px;
  padding: 8px 25px;
}

/* Invite form */
.invite-form {
  max-width: 400px;
}

/* Public status page */
.public-status-page {
  max-width: 600px;
  margin: 0 auto;
}
.public-status-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.public-status-header .current-status {
  display: inline-block;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 16px;
}
.public-status-header .current-status.up {
  background: #efe;
  color: #060;
}
.public-status-header .current-status.down {
  background: #fee;
  color: #900;
}
.public-status-header .current-status.pending {
  background: #ffe;
  color: #960;
}

/* Uptime bar */
.uptime-bar {
  display: flex;
  gap: 1px;
  height: 20px;
  margin: 10px 0;
  background: #eee;
}
.uptime-bar-segment {
  flex: 1;
}
.uptime-bar-segment.up { background: #090; }
.uptime-bar-segment.down { background: #c00; }
.uptime-bar-segment.no-data { background: #ddd; }

/* Admin */
.admin-panel {
  background: #fff3e0;
  border-left: 3px solid #e65100;
  padding: 8px 12px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #6d4c00;
}
.site-nav[style*="background-color"] nav {
  display: flex;
  align-items: stretch;
}
.site-nav[style*="background-color"] nav a,
.site-nav[style*="background-color"] nav a:visited {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0 12px;
  display: flex;
  align-items: center;
}
.site-nav[style*="background-color"] nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  text-align: left;
  padding: 6px 10px;
  border-bottom: 2px solid #ccc;
  font-size: 12px;
}
.admin-table td {
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
}
.admin-table tr:hover {
  background: #f8f8f8;
}
.status-badge.pending_destruction { color: #c00; }
.filter-bar { margin-bottom: 16px; display: flex; gap: 8px; font-size: 13px; }
.filter-bar a { padding: 4px 10px; border-radius: 4px; text-decoration: none; color: #333; background: #eee; }
.filter-bar a.active { background: #2c3e50; color: #fff; }

/* Content sections */
.content-section ul,
.content-section ol {
  margin: 10px 0 10px 25px;
}

/* Error page */
.error-page {
  text-align: center;
  padding: 50px 0;
}
.error-page h1 {
  font-size: 72px;
  color: #ccc;
}
.error-page p {
  color: #666;
}

/* Notice box */
.notice-box {
  background: #ffe;
  border: 1px solid #cc0;
  padding: 15px;
  margin: 15px 0;
}

/* Secure login link section */
.secure-link-section {
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border: 1px solid #ddd;
}
.secure-link-section h3 {
  margin-top: 0;
}
.secure-link-section p {
  font-size: 13px;
  color: #666;
}
.secure-link-input {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.secure-link-field {
  flex: 1;
  max-width: none;
  font-family: monospace;
  font-size: 12px;
  background: #fff;
}
.secure-link-input .btn {
  background: #eee;
  border: 1px solid #999;
  padding: 5px 15px;
  text-decoration: none;
  color: #000;
}
.secure-link-input .btn:hover {
  background: #ddd;
}

/* Footer */
.site-footer {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
  text-align: center;
}
.page-timing {
  color: #999;
  font-size: 11px;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 5px 10px;
}

/* Lists */
ul, ol {
  margin: 8px 0;
  padding-left: 25px;
}
p {
  margin: 8px 0;
}

/* Misc */
.inline-link { margin-right: 20px; }
.empty-hint { color: #999; font-style: italic; }
.keyword-badge { font-size: 11px; color: #069; }

/* Window/groupbox (simplified) */
.window { border: 1px solid #ccc; margin-bottom: 20px; }
.window-title { background: #e4eaf2; padding: 8px 12px; font-weight: bold; }
.window-body { padding: 15px; }
.groupbox { border: 1px solid #ccc; padding: 15px; margin-bottom: 15px; }
.groupbox-title { font-weight: bold; margin-bottom: 10px; }
.raised, .inset { border: 1px solid #ccc; }

/* Monitor type choice */
.monitor-type-choice {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.monitor-type-option {
  flex: 1;
  border: 1px solid #ccc;
  padding: 15px;
}
.monitor-type-option h2 {
  margin-top: 0;
  border: none;
}
.monitor-type-option p {
  font-size: 13px;
  color: #666;
}

/* Pending check notice */
.pending-check-notice {
  background: #ffe;
  border: 1px solid #cc0;
  padding: 15px;
  margin: 15px 0;
  text-align: center;
}
.pending-check-notice p {
  margin-top: 10px;
  color: #666;
}
.loading-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: #069;
  animation: loading-slide 0.8s ease-in-out infinite;
}
@keyframes loading-slide {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* Pending stat value */
.stat-value.pending {
  color: #999;
}

/* Custom tooltip */
.custom-tooltip {
  position: fixed;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  font-size: 14px;
  z-index: 10000;
  pointer-events: none;
  white-space: nowrap;
}
