/* owl-alerts-bell.css — self-injecting header bell for price alerts */

.owla-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 6px 8px;
  margin-right: 4px;
  border-radius: 8px;
  color: inherit;
}
.owla-bell:hover { background: rgba(110, 168, 254, 0.15); }

.owla-bell-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  box-sizing: border-box;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  border-radius: 9px;
  display: none;
}
.owla-bell-badge.show { display: block; }

.owla-bell-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 320px;
  max-width: 86vw;
  background: #14181f;
  border: 1px solid #2a303b;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  color: #e6e9ef;
  z-index: 10060;
  display: none;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.owla-bell-dropdown.show { display: block; }

.owla-bell-head {
  padding: 10px 14px;
  border-bottom: 1px solid #232833;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8b95a3;
}
.owla-bell-list { max-height: 320px; overflow-y: auto; }
.owla-bell-item {
  padding: 10px 14px;
  border-bottom: 1px solid #1c2129;
  font-size: 13px;
}
.owla-bell-item:last-child { border-bottom: none; }
.owla-bell-item .sym { font-weight: 700; color: #6ea8fe; }
.owla-bell-item .when { display: block; font-size: 11px; color: #6b7280; margin-top: 2px; }
.owla-bell-empty { padding: 16px 14px; color: #6b7280; font-size: 13px; text-align: center; }

.owla-bell-foot {
  padding: 10px 14px;
  border-top: 1px solid #232833;
  text-align: center;
}
.owla-bell-foot a { color: #6ea8fe; text-decoration: none; font-size: 13px; font-weight: 600; }
.owla-bell-foot a:hover { text-decoration: underline; }

.owla-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #14181f;
  border: 1px solid #2a303b;
  border-left: 4px solid #fbbf24;
  color: #e6e9ef;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 10070;
  font-size: 13px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.owla-toast.show { opacity: 1; transform: translateY(0); }
