/* Carousel CSS */
.carousel-inner .item img {
    width: 100%;
}

.feature-region {
	background-image: none;
}

/*CATALOG/SUB-CATALOG PAGES*/

#badges-container {

     font-weight: normal;

}
/*Modify search box background color*/
.search-form-container {
background-color: #00235D;
}

/*Modify search box size*/
form.search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

/*Center search box*/
#search-form .search-box-wrapper {
    margin-top: 0px;
}

/* Modify search box size and corners*/
.search-form .search-box {
    border-radius: 4px;
    border: 1px solid black;
    height: 40px
}

/* Modify search box submit icon layout*/
.search-form .search-submit {
    color: #0899D3;
    width: 30px;
    height: 30px;
    margin-top: -3px;
    top: 8px;
}


/* Hover effect on course listings */
.product-link:hover {
transform: scale(1.04);
color: #002F6C;
}

.product-link {
transition: transform 0.6s ease;
transform: none;
color: #000000;
}

/* Orange underline when hover over listings */
.product-results .product-tile:hover {
    box-shadow: inset 0px -5px 0px #00245D;
}

/*LISTING PAGES*/

/*Format feature stripe color*/
#product-page #feature {
    background: #00235D;
    padding-top: 20px
}
#search-form .search-label,
#search-form .search-box-wrapper {
    visibility: visible;
}

#search-refine-button--refine 

::placeholder {
    color: #ffffff !important;
}
/*STUDENT DASHBOARD*/

/* Hide the Drop Course option from the student dashboard */
/*.col-xs-2.col-sm-1 {
    display: none;
}*/

/*HIDES ADMIN NAVIGATION, PROMOTION DATA*/
.col-md-12 {
    display: block;
}

/*program color green*/
.ProductIcon__LargeCircle--program {
    font-size: 21px;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #71cc98;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid white
}
/*Course color blue*/
.ProductIcon__LargeCircle--course {
    font-size: 21px;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0054A6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid white
}
/* Faculty Ideas Banner under Search Bar */
#faculty-ideas-banner {
  display: block;
  width: fit-content;
  max-width: 90%;
  margin: 16px auto 24px auto; /* Centers the banner and adds vertical spacing */
  padding: 10px 20px;
  background-color: #002D62; /* Creighton Navy */
  color: #ffffff;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#faculty-ideas-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#faculty-ideas-banner a {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

#faculty-ideas-banner a:hover,
#faculty-ideas-banner a:focus {
  text-decoration: none;
  opacity: 0.9;
}
