/* Subglubler styles */
.glued-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.glued-header {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.1);
}

.glued-favicon {
  width: 13px;
  height: 13px;
}

.glued-url {
  color: white;
  text-decoration: none;
  font-size: 10px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.glued-url:hover {
  text-decoration: underline;
}

.glued-title {
  padding: 10px 12px;
  margin: 0;
  font-size: 11px;
  color: white;
}

/* Styles for glued sites within subglublers */
.subglubler-glued-sites {
  padding: 6px;
  margin-top: 4px;
}

.subglubler-glued-item {
  margin-bottom: 6px;
  background: transparent; /* Changed from rgba(0,0,0,0.1) to transparent */
  border-radius: 4px;
  overflow: hidden;
}

.subglubler-glued-header {
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent; /* Changed from rgba(0,0,0,0.1) to transparent */
}

.subglubler-glued-favicon {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.subglubler-glued-url {
  color: white;
  text-decoration: none; /* Ensure no underline */
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  background: transparent; /* Added to ensure no background */
  pointer-events: none; /* Make it non-clickable */
  cursor: default; /* Change cursor to default */
}
