/* css styles */

/* --- Body Background Color --- */
body {
  background-color: #f0f0f0; /* Light gray background */
  color: 333;
  font-family: Arial, sans-serif; /* Default font */
  line-height: 1.7; /* Default line height for readability */
}

/* --- Heading Colors --- */
h1 {
  color: #0056b3; /* Dark blue for main headings */ 
  text-align: center; /* Centered headings */
  font-size: 2.8em; /* Larger font size for main headings */
  margin-top: 2em; /* Margin for spacing */
  margin-bottom: 1.2em; /* Margin for spacing */
  line-height: 1.2em; /* Line height for main headings */
}

h2 {
  color: #007bff; /* Lighter blue for subheadings */
  text-align: center; /* Centered subheadings */
  font-size: 2.0em; /* Slightly smaller than main headings */
  margin-top: 1.8em; /* Margin for spacing */
  margin-bottom: 0.8em; /* Margin for spacing */
  line-height: 1.3; /* Line height for subheadings */
}

h3 {
  color: #444; /* Gray for smaller headings */
  text-align: center; /* Centered smaller headings */
  font-size: 1.5em; /* Smaller font size for smaller headings */
  margin-top: 1.5em; /* Margin for spacing */
  margin-bottom: 0.7em; /* Margin for spacing */
  line-height: 1.4; /* Line height for smaller headings */
}

/* --- Paragraph Text Color --- */
p {
  color: #555; /* Dark gray for paragraph text */
  line-height: 1.7; /* Improved readability with line height */
  margin-bottom: 1.5em; /* Spacing between paragraphs */
}

ul {
  margin-bottom: 1.5em; /* Spacing below lists */
  padding-left: 20px; /* Indentation for list items */
}

ul li {
  line-height: 1.7; /* Line height for list items */
  margin-bottom: 0.6em; /* Spacing between list items */
}

a {
  color: #007bff; /* Link color */
  text-decoration: none; /* No underline for links */
}

a:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: underline; /* Underline on hover */
}

a:visited {
  color: #6c757d; /* Lighter gray for visited links */
}

.libutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  text-align: center;
  outline: none;
  text-decoration: none !important;
  color: #ffffff !important;
  width: 200px;
  height: 32px;
  border-radius: 16px;
  background-color: #0A66C2;
  font-family: "SF Pro Text", Helvetica, sans-serif;
}

/* src/stylesheet/suTheme.scss */

/* src/stylesheet/suTheme.scss */

/* ... (your existing styles) ... */

.f1-news-list {
  list-style: disc; // Standard bullet points
  padding-left: 20px; // Adjust padding as needed for the bullet indent
  margin-left: 0; // Ensure no default browser margin pushes the bullets too far

  li {
    display: flex;       // Use flexbox for alignment
    align-items: baseline; // Aligns items at their text baseline
    margin-bottom: 0.5em; // Space between list items
    line-height: 1.4;    // Adjust line height

    .f1-news-title {
      flex-grow: 1;      // Allows the title to take up available space
      flex-shrink: 1;    // Allows the title to shrink if needed
      margin-right: 15px; // Space between title and date
      // Optional: if titles are very long, you might want to truncate or wrap
      // white-space: normal; // Default, ensures wrapping
    }

    .f1-news-date {
      flex-shrink: 0;        // Prevents the date from shrinking
      text-align: right;     // Align date to the right within its reserved space
      width: 90px;           // <--- ADJUST THIS WIDTH. This is the key for alignment.
                             // Make it wide enough for the longest date string (e.g., "YYYY-MM-DD")
      font-style: italic;
      color: #555;
    }
  }
}