.ewxshare-btn-icon-only {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  color: #253B7C;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.ewxshare-menu {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.ewxshare-item, .ewxshare-copy-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #253B7C;
}


.ewxshare-wrapper {
    display: block;
}

.ewxshare-menu {
  background: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.ewxshare-item {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #253B7C;
  font-size: 15px;
  margin-bottom: 6px;
  background: #fff;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.ewxshare-item:hover {
  background: #f0f0f0;
}

.ewxshare-item i {
  margin-right: 8px;
}

.ewxshare-note {
  font-size: 13px;
  color: #777;
  margin-top: -4px;
  margin-bottom: 10px;
  padding-left: 6px;
}

.ewxshare-copy-btn {
  background: #253B7C;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}

.ewxshare-copy-btn:hover {
  background: #AF1F24;
}

.ewxshare-copied-notice {
  margin-top: 8px;
  font-size: 13px;
  color: green;
  text-align: center;
}

.ewxshare-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #253B7C;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ewxshare-toast.show {
    display: block;
    opacity: 1;
}
