/* District Styles */

/* Assurance Dashboard spinner - testing mm */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Assurance Dashboard Mobile Icon Image MM */

@media only screen and (max-width: 768px) { /* Adjust max-width as needed */
    .responsive-img-mobile {
      max-width: 80%;
      max-height: 80%;
    }
  }


/* css to resolve gutter issues on buttons MM */

@media (max-width: 768px) {
  .no-gutters {
    margin-left: 0;
    margin-right: 0;
  }
}
/* css to resolve feature image from shrinking to 80% on moblie devices - MM */
@media (max-width: 37.5em) {
    figure.image img {
        width: 100% !important;
    }
}
/* Addresses the issue of icons for assurance dashboard being to big - mm */
.max-size {
    max-width: 150px;
    max-height: 150px;
  }
/* This updates the link/hover state for the href text for our mission statement in the video section of the ecsd.net homepage */
a.homepageLink:link {
    color: #f5a800 !important;
}

    a.homepageLink:visited {
    color: #f5a800 !important;
}
 a.homepageLink:active {
    color: #f5a800 !important;
}
a.homepageLink:hover {
    color: #00afaa !important;
}



/* =========================================
   CSS For Callout Boxes
   ========================================= */



/* Base Callout Style */
.bs-callout {
  position: relative;
  padding: 20px 25px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
  border-left-width: 6px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease-in-out;
}

.bs-callout:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Info Callout Variation */
.bs-callout-info {
  border-left-color: var(--accent-2);
  background: var(--light-grey);
}

.bs-callout-danger {
  border-left-color: #dc3545; /* Bootstrap's danger red */
  background: rgba(220, 53, 69, 0.08); /* light tinted red background */
}

/* danger callout styling */
.bs-callout-danger h4 {
  color: #b02a37; /* darker red for heading */
}

.bs-callout-danger .bs-callout-title {
  color: #842029; /* strong text color for title */
}

/* Optional brand-specific variants */
.bs-callout-primary {
  border-left-color: var(--primary-brand);
  background: rgba(85, 41, 136, 0.05);
}

.bs-callout-secondary {
  border-left-color: var(--secondary-brand);
  background: rgba(245, 168, 0, 0.08);
}

.bs-callout-accent {
  border-left-color: var(--accent-1);
  background: rgba(0, 175, 170, 0.08);
}

/* Title Section */
.bs-callout-info .bs-callout-title,
.bs-callout-primary .bs-callout-title,
.bs-callout-accent .bs-callout-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--dark-font-color);
}

/* Heading Styles */
.bs-callout-info h4,
.bs-callout-primary h4,
.bs-callout-accent h4 {
  color: #6d7072;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Paragraph Text */
.bs-callout p {
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* Link Styling */
.bs-callout a {
  color: var(--accent-1);
  text-decoration: none;
  font-weight: 500;
}

.bs-callout a:hover {
  text-decoration: underline;
}
.bs-callout-secondary a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.bs-callout-secondary a:hover {
  text-decoration: underline;
}


/* CSS For the Jasper Wild fire information boxes - MM */
.bs-callout-jasper {
  border-left-color: var(--accent-2);
  background: #e5f7f7;
}
.bs-callout-jasper h4 {
    color: #272829;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.bs-callout-jasper p {
    color: #272829;
    font-size: 1.2rem;
    line-height: 1.7rem;
}
.bs-callout-secondary {
  border-left-color: var(--secondary-brand);
  background: rgba(245, 168, 0, 0.08);
}
.bs-callout-secondary h4 {
    color: #272829;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.bs-callout-secondary p {
    color: #272829;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

/* css for nowrap - applied to some of the hr tags - mm */

.no-wrap {
    white-space: nowrap;
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis; /* Optional: adds an ellipsis (...) for overflowed content */
}

/* Compiled CSS from Bootstrap 4's responsive embeds */
@media only screen and (min-width: 768px) {

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}
}
@media only screen and (max-width: 767px) {

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    height: 2400px;
    padding: 0;
    overflow: hidden
}
}
/* CSS For the School Assurance Dashboards to modify both desktop and mobile iframes */
@media only screen and (min-width: 768px) {

.embed-responsive-dashboard {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}
}
@media only screen and (max-width: 767px) {

.embed-responsive-dashboard {
    position: relative;
    display: block;
    width: 100%;
    height: 1800px;
    padding: 0;
    overflow: hidden
}
}
.embed-responsive::before {
    display: block;
    content: ""
}
.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}
.embed-responsive-21by9::before {
    padding-top: 42.85714%
}
.embed-responsive-16by9::before {
    padding-top: 20px;
}
.embed-responsive-4by3::before {
    padding-top: 75%
}
.embed-responsive-1by1::before {
    padding-top: 100%
}

/* DCT modified featured image */

.featured-img img {
    max-height: 100% !important;
}

/* Button CSS */

.btn-block {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.text-center {
    text-align: center;
}



/* Tsble border styling for all school and div tables */

.table {
    border: 0.5px solid #f4f4f4 !important;
}

/* Land Acknowledgment Overlay */
.footer-banner-overlay {

    background: linear-gradient(0deg, rgb(0 0 0 / 64%), rgb(189 189 189 / 9%)) !important;

}
/* Footer Logo Sizing */
.footer-logo {
	max-width: 200px !important;
}
/* Bottom Margin for landing page Cards */
.collapsible-box-description {
    margin-bottom: 1rem !important;
}

/* Banner video - gradient overlay - this turns off overlay */
.banner-overlay {
    background: transparent linear-gradient(180deg, #50505000 0%, #000000d1 100%) !important;
}

/* modified background styling for collapsable boxes on all sites - Start */
.collapsible-box-title {
    background-color: #eeeeee !important;
}


/* Outline Button Primary accent 2 */
.btn-outline-primary {
    color: var(--accent-2);
    background-color: transparent;
    background-image: none;
    border-color: var(--accent-2);
}
.btn-outline-primary:hover {
    color: #ffffff;
    background-color: var(--accent-2);
    background-image: none;
    border-color: var(--accent-2);
}

/* secondary - accent 1 buttons  */
.btn-secondary {
  background-color: var(--accent-1);
    color: #ffffff;
    transition: background-color 0.3s, filter 0.3s; /* Smooth transition */
}

.btn-secondary:hover {
    filter: brightness(85%);
    color: #fff;
}
.btn-outline-secondary {
    color: var(--accent-1);
    background-color: transparent;
    background-image: none;
    border-color: var(--accent-1);
}
.btn-outline-secondary:hover {
    color: #ffffff;
    background-color: var(--accent-1);
    background-image: none;
    border-color: var(--accent-1);
}

/* Success - Green buttons outlined */
.success {
  border-color: #04AA6D;
    color: #008000;
    border: 2px solid #54b004;
}

.success:hover {
  background-color: #04AA6D;
  color: white;
	border: 2px solid #54b004;
}

/* Success - Green buttons outlined */
.btn-success {
  background-color: #04AA6D;
    color: #ffffff;
    border: 2px solid #04AA6D;
}

.btn-success:hover {
  background-color: #066f49;
  color: white;
	border: 2px solid #058355;
}

.btn-outline-success {
  border-color: #04AA6D;
    color: #008000;
    border: 2px solid #54b004;
}

.btn-outline-success:hover {
  background-color: #04AA6D;
  color: white;
	border: 2px solid #54b004;
}

/* Alert - Yellow buttons outlined */
.alert {
  border-color: #ffb700;
    color: #ffb700;
    border: 2px solid #ffb700;
}

.alert:hover {
  background-color: #ffb700;
  color: white;
	border: 2px solid #ffb700;
}

.btn-outline-alert {
  border-color: #ffb700;
    color: #ffb700;
    border: 2px solid #ffb700;
}

.btn-outline-alert:hover {
  background-color: #ffb700;
  color: white;
	border: 2px solid #ffb700;
}

.btn-alert {
 background-color: #ffb700;
    color: #ffffff;
    border: 2px solid #ffb700;
}

.btn-alert:hover {
  background-color: #eca100;
  color: white;
	border: 2px solid #eca100;
}

/* Alert - Danger buttons outlined */

.btn-danger {
  background-color: #ff0800;
    color: #ffffff;
    border: 2px solid #ff0800;
}

.btn-danger:hover {
  background-color: #bc0c06;
  color: #ffffff;
	border: 2px solid #bc0c06;
}
.btn-outline-danger {
  background-color: transparent;
    color: #ff0800;
    border: 2px solid #ff0800;
}

.btn-outline-danger:hover {
  background-color: #bc0c06;
  color: white;
	border: 2px solid #bc0c06;
}


.search-description {
	color:#898989 !important;
	font-weight: 100 !important;
} 
.image {
	margin: 0px;
}

/* Card templated bootstrap css */
.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: 1px;
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: 0.375rem;
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(0.375rem - 1px);
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}
.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}
.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
}
.card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
}
.card-text:last-child {
    margin-bottom: 0;
}
.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}
.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
.card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
}
.card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg);
}
.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
}
.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }
    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-header,
    .card-group > .card:not(:last-child) .card-img-top {
        border-top-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-footer,
    .card-group > .card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-header,
    .card-group > .card:not(:first-child) .card-img-top {
        border-top-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-footer,
    .card-group > .card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0;
    }
}

/* End of Card Templated CSS */

/* For Landing Pages - Padding to each block */
.landing > li > .landing-page-padding {
	padding:15px;
}

.collapse-style {
    display: flex;
    background-color: #eeeeee;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    cursor: pointer;
    font-size: 1.3rem;
}