/*Hide user email change*/
.email_meta {
  display: none;
  }
  .add_contact_link {
      display: none;
  }



/*Content tab formatting*/
  #fca-tab-menu{
  display: flex;
  list-style-type: none;
  padding: 0px;
  padding-top: 40px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-decoration: none;
  border-color: black;
  border-width: 1px;
  font-size: 20px;
}

.tab-menu{
  display: flex;
  padding: 3px;
  border-right-style: solid;
  border-top-style: solid;
  border-color: black;
  border-width: 1px;
  text-decoration: none;
  color: blue;
}

.tab-menu:active{
  font-weight: bolder;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: white;
}

.tab-content {
  display: none;
  border-style: solid;
  border-color: black;
  border-width: 1px;
  padding: 3px;
  margin-right: 7px;
}
.tab-content:target {
  display: block;
}

/* CSS for custom Zendesk widget launcher */

#launcher {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10px;
  left: 12px;
  background-color: #d7a34d;
  border-radius: 8px;
  color: #fff;
  /* border-radius:50px; */
  text-align: center;
  z-index: 110000;
}

#support_icon {
  position: relative;
  top: 8px;
  max-width: 83%;
  max-height: 83%;
}

#notification {
  position: absolute;
  height: 20px;
  width: 18px;
  padding: 0px 2px;
  left: 46px;
  bottom: 48px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  background-color: #d93f4c;
  z-index: 120000;
  font-size: 13px;
}

/* 2. Make it look clickable */
details summary {
  cursor: pointer;
}

a.no-icon::after {
  display: none !important;
}

/*"LOAD IN NEW WINDOW" BUTTON (Stronger Selector) Target: External Tool Launch buttons in Assignments/Modules*/

/* 1. Target the button inside the tool wrapper */
.tool_content_wrapper form.external_tool_launch button.btn,
.tool_content_wrapper .btn,
#content form.external_tool_launch button.btn {
    background-image: none !important; /* <--- removes the default gray gradient */
    background-color: #038ab2 !important; 
    color: #ffffff !important;
    border: 1px solid #026b8a !important;
    text-shadow: none !important; /* removes gray text shadow */
    font-weight: bold !important;
    padding: 10px 20px !important; /* make it a bit bigger/easier to click */
}

/* 2. Hover State */
.tool_content_wrapper form.external_tool_launch button.btn:hover,
.tool_content_wrapper .btn:hover,
#content form.external_tool_launch button.btn:hover {
    background-color: #026b8a !important; 
    color: #ffffff !important;
    background-image: none !important;
}

/* HOME PAGE BUTTONS (Indestructible Version) The class is applied to a SPAN wrapper, not the link */
.btn-homepage {
    display: inline-block !important;
    background-color: #518392 !important;
    border: 1px solid #297A9A !important;
    border-radius: 4px !important;
    padding: 5px 12px !important;
    margin: 5px !important;
    cursor: pointer; /* Makes it look clickable even if link is removed */
    transition: background-color 0.2s ease !important;
}

/* Ensure text inside is always white and bold */
.btn-homepage, 
.btn-homepage a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-family: 'Lato Extended', sans-serif !important;
}

/* Hover Effect */
.btn-homepage:hover {
    background-color: #2a4e57 !important;
    border-color: #1a3e47 !important;
}