body {
    font-family: "Ubuntu", sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  width: 320px;
  margin: auto;
}

h1 {
    text-align: center;
    color: #202124;
    font-weight: normal;
    margin-bottom: 24px;
}

label {
    font-size: 14px;
    display: block;
    color: #202124;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus {
    border: 1px solid #4285f4;
    outline: none;
}

input[type="submit"] {
    width: 100%;
    padding: 8px 12px;
    background-color: #1a73e8;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #2b7de9;
}

.content-wrapper {
    font-family: "Ubuntu", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #202124;
    display: flex;
    justify-content: space-between;
    padding-top: 100px; /* Increased padding to avoid content being hidden behind the menu bar */
    padding-left: 5%;
    padding-right: 5%;
    width: 100%; /* Add this line to make sure the container takes up the full width */
}

.logout-button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #1a73e8;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.logout-button:hover {
    background-color: #2b7de9;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
}

.tagline {
    display: inline;
    font-weight: 100;
}

.nav {
    display: flex;
    padding-right: 40px;
}

.left-column {
  width: 80%;
}

.right-column {
  width: 20%;
}

.left-column, .right-column {
    padding: 20px;
    box-sizing: border-box;
    min-height: 1px;
}

.content-container {
    display: flex;
    width: 100%;
}

.content-list {
    list-style-type: none;
    padding: 0;
    font-size: 14px; /* Smaller font size for list items */
    line-height: 1.4; /* Adjust line height for better readability */
}

.content-item {
    border-bottom: 1px solid #dadce0;
    padding: 8px 0;
}

.content-item:last-child {
    border-bottom: none;
}

.content-item h3 {
    font-size: 14px; /* Smaller font size for titles */
    margin: 0;
    margin-bottom: 4px;
}

.content-item p {
    font-size: 12px; /* Smaller font size for descriptions */
    margin: 0;
    margin-bottom: 4px;
}

.more-link {
    font-size: 12px; /* Smaller font size for more links */
    color: #1a73e8;
    text-decoration: none;
}

.more-link:hover {
    text-decoration: underline;
}

.content-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pubDate {
    font-size: 12px;
    color: #5f6368;
}

.category-tag {
  background-color: #b8b8b8;
  color: #fff; /* add this to change the font color to white for better contrast */
}

.content-item-tags {
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    background-color: #e0e0e0;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.content-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 8px;
    border-radius: 4px;
}

.content-item-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}





.controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

#load-new-items[disabled] {
    border: 1px solid #ccc;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

#load-new-items[disabled]:hover {
    border: 1px solid #ccc;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #ccc;
}

#load-new-items {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 6px 12px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
  color: #202124;
}

.controls button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.filter-button, .load-all-items {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
    color: #202124;
}

.filter-button:hover, .load-all-items:hover {
    background-color: #e0e0e0;
}

.filter-button.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.item-image {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: top;
  border-radius: 2px;
}

.category-tag {
  margin-left: 4px;
}

.trending-tags-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.trending-tags-list li {
  margin-bottom: 8px;
}

.trending-tags-list a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f0f0;
  color: #202124;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.trending-tags-list a:hover {
  background-color: #007bff;
  color: #ffffff;
}

.trending-tags {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tag-item {
    margin-bottom: 5px;
    font-size: 14px;
    color: #202124;
}

.trending-tags-container {
    padding: 0;
    margin: 0;
}

.pam {
  font-size: 42px;
  font-weight: bold;
  color: #1a73e8;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
}

.curve {
  font-size: 42px;
  color: #1a73e8;
  font-weight: bold;
  display: inline;
  font-weight: 100;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.source-name {
  font-size: 0.8em;
  font-weight: bold;
  opacity: 0.6;
  margin-bottom: 5px;
  margin-left: 5px;
}

.source-name-container {
  display: inline-flex;
}
