/* Container Styling */
.container {
  max-width: 65%;
  margin: 0 auto; /* Center the container */
  padding: 1rem; /* Add some padding for spacing */
}

/* Bookmark Item Styling */
li[ld-bookmark-item] {
  padding: 16px; /* Simplified padding syntax */
  border-radius: 12px; /* Fixed border-radius syntax */
  background-color: #202331; /* Dark background color for the bookmark */
}

/* Title Styling */
li[ld-bookmark-item] .title {
  font-size: 0.75rem; /* Slightly smaller font for titles */
  line-height: 1.1; /* Compact line height for consistency */
  display: flex; /* Align image and text horizontally */
  align-items: center; /* Center align content vertically */
}

/* Spacing between Logo and Title */
li[ld-bookmark-item] .title img + a {
  padding-left: 25px; /* Space between the image and the title text */
}

/* Logo (Image) Styling */
li[ld-bookmark-item] .title img {
  width: 18px;
  height: 18px;
  border-radius: 5px; /* Rounded corners for the image */
  margin-right: 12px; /* Extra spacing for flexibility */
}