/* Ensure the event boxes use your custom styles */
div.admonition.info {
    background-color: #fce4e4 !important; /* Very light red background */
    color: #000000 !important; /* Black text */
    border-left: 4px solid #d00000 !important; /* Red border */
  }
  
  /* Ensure the event title has a red color */
  div.admonition.info .admonition-title {
    color: #d00000 !important; /* Red title text */
  }
  
  /* Optional: Add a custom font-weight for the title */
  div.admonition.info .admonition-title {
    font-weight: bold;
  }
  
  /* Optional: Customize other admonitions (warning, tip) */
  div.admonition.warning {
    background-color: #ffebcc !important; /* Light yellow */
    color: #000000 !important; /* Black text */
    border-left: 4px solid #ffcc00 !important; /* Yellow border */
  }
  
  div.admonition.tip {
    background-color: #d0ffd0 !important; /* Light green */
    color: #000000 !important; /* Black text */
    border-left: 4px solid #00cc00 !important; /* Green border */
  }

  
  