/*-- scss:defaults --*/

// Define a new darker blue
//$dark-blue: #00174d;

// Override Bootstrap's primary color variable
//$primary: $dark-blue;

// Set navbar background and link colors
//$navbar-bg: $primary;
//$navbar-dark-color: rgba(255, 255, 255, 0.8);
//$navbar-dark-hover-color: #FFFFFF;


/*-- scss:rules --*/

// Increase navbar font size
.hero-banner .btn {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  margin-top: 1rem;
}

// Ensure listing images fit entirely within their containers
img.thumbnail-image {
  height: 250px !important;
}

/* Style for the definition container */
.theorem.definition {
    position: relative;
    background-color: #f8f8f8;
    border-left: 7px solid #000000;
    margin: 1em 0;
    border-radius: 5px; /* Round only bottom corners */
}

/* Style for the paragraph inside definition */
.theorem.definition p{
    margin: 0;
    padding: 0 10px 10px 10px;
}

/* Style for the title bar */
.theorem.definition .theorem-title {
    display: block;
    background-color: #000000;
    color: #ffffff;
    padding: 5px 10px 5px 17px;
    margin: 0 -10px 5px -17px;
    border-radius: 0 5px 0 0; /* Round only top-right corner */
}

/* End-of-example marker (filled square)
.theorem.example::after {
    content: "□";
    display: block;
    text-align: right;
    padding: 0 10px 5px 0;
    font-size: 1rem;
} */

/* Style for the example container - remove bold from tutorials-chapters.css 
.theorem.example {
    position: relative;
    background-color: #f8f8f8;
    border-left: 7px solid #4CAF50;
    margin: 1em 0;
    border-radius: 5px;
    font-weight: normal;
    font-style: normal;
}

/* Style for the paragraph inside example 
.theorem.example p {
    margin: 0;
    padding: 0 10px 10px 10px;
}

/* Style for the title bar of example
.theorem.example .theorem-title {
    display: block;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 5px 10px 5px 17px;
    margin: 0 -10px 5px -17px;
    border-radius: 0 5px 0 0;
}
*/