/* CSS for Announcements */
.announcement-wrapper {
	display: inherit;
  	/* Comment below line to enable banner */
	display: none;
	padding: 20px;
}
.announcement {
  background-color: orange; /* Background color */
  color: black; /* Text color */
  text-align: center; /* Centered text */
  padding: 5px; /* Padding around the text */
  margin: auto; /* Center the box */
  max-width: 1080px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-family: Arial, sans-serif; /* Font style */
}

/* Hides comment button on front-end ticket forms. */
/* Forces users to reply */
li[data-id="912528000000740001_thread"] { 
  display: none !important;
}
.ConversationForm__list:first-of-type {
  display: none !important;
}

/* Fixes link color */
.commonStyle__zt3Brand {
	color: #00b7ff;
}

/* Hides Edit Profile button */
.ManageAccount__profileOptions .Button__primary {
  display: none !important;
}
/* Hides Edit Profile option in the manage account area */
.ProfileRightBar__profileHeadTitleBorder  {
  display: none !important;
}
/* Hides Delete Profile box */
.DeleteAccount__layer {
  display: none !important;
}

/* Banner with instructions for signing up */
.signup-banner {
    width: 100%;
    background-color: #006AA3; /* Change to preferred background color */
    color: white; /* Text color */
    text-align: center;
    padding: 15px 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
}

.signup-banner-text {
    margin: 0;
}

