.WaGadgetEventsStateCalendar .monthViewType .EventListCalendar td>div a {
    color: black;
}

a[href$=".pdf"]::after, a[href$=".zip"]::after,
a[href$=".doc"]::after, a[href$=".docx"]::after {
    font-family: "FontAwesome"; /* */
    font-weight: 900; /* Required for solid icons */
    padding-left: 8px; /* Spacing between text and icon */
}

/* Add the PDF icon (Unicode: \f1c1) */
a[href$=".pdf"]::after {
    content: "\f1c1"; 
}

/* Add the ZIP icon (Unicode: \f1c6) */
a[href$=".zip"]::after {
    content: "\f1c6"; 
}

/* Add the Word File icon (Unicode: \f1c2) */
a[href$=".doc"]::after, a[href$=".docx"]::after {
    content: "\f1c2"; 
}

/* Add "External Link" icon (Unicode: \f08e) */


/*Rounded buttons */
.round-btn {
  background-color: #3E4095; /* Green background */
  border: none; /* Remove default border */
  color: white !important; /* White text */
  padding: 15px 32px; /* Some padding */
  text-align: center; /* Center the text */
  display: inline-block; /* Make it behave like a button */
  margin: 4px 2px; /* Add some margin */
  cursor: pointer; /* Change mouse cursor on hover */
  border-radius: 12px; /* Rounded corners */
}

.round-btn a {
    color: white;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: bold;
}