/* List page background colors */

#quarto-content {
  background: linear-gradient(175deg,
  rgba(250, 250, 250, 1),
  rgba(248, 248, 248, 1),
  rgba(193, 0, 0, .04), /* red */
  rgba(193, 0, 0, .05), /* red */
  rgba(191, 0, 127, .04), /* pink */
  rgba(191, 0, 127, .04), /* pink */
  rgba(116, 20, 156, .04), /* purple */
  rgba(116, 20, 156, .04), /* purple */
  rgba(75, 0, 193, .05), /* indigo */
  rgba(75, 0, 193, .05) /* indigo */
  100%);
}

/* Remove space at top of list page */

#quarto-content>* {
  padding-top: 0px;
  margin-top: 0px;
}

/* Shinylive styling for list page */

.shinylive-container.viewer {
  min-width: 190px !important;
}

div.shinylive-wrapper {
  margin: 0;
}

div.sourceCode,
pre.console {
  background-color: transparent;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
}

div.output-content,
div.shinylive-wrapper {
  background-color: rgba(250, 250, 250, 1);
  border: 0px;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shinylive-container,
.app-frame,
.shinylive-container>div {
  border-radius: 10px;
}


/* list page styling */

.list-section {
  border-top: 1px solid #cdd4da;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.component-list-column {
  padding-top: 1rem;
   align-self: end;
}

.component-list-card {
  box-shadow: 0px 1px 2px rgba(29, 31, 33, 0.1),
    0px 2px 3px rgba(29, 31, 33, 0.1), 0px 3px 8px rgba(29, 31, 33, 0.1);
  border-radius: 10px;
  height: 150px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.component-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0px;
}


.component-list-header-text,
.component-list-icon a {
  text-decoration: none;
  color: #212529;
}

.component-list-icon {
  margin-bottom: 0.375rem;
}

.component-list-icon a {
  font-size: 1.25em;
}

.component-list-header-text a {
  border-bottom: none;
}
.component-link-icon {
  margin: 0.25rem;
  white-space: nowrap;
}

a .component-link-icon:after {
  content: "\F134";
  font-family: "bootstrap-icons";
  transition: all 0.3s !important;
}

a:hover .component-link-icon:after,
a.component-list-header-text:hover
  ~ div.component-list-icon
  p
  a
  i.component-link-icon:after {
  content: "\F133";
  font-family: "bootstrap-icons";
}

.component-list-header-text:hover {
  color: #000000;
}

/* Hero area of list page */

@media only screen and (max-width: 767px) {
  .components-hero-img-container {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .components-hero-img-container {
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .components-hero-img {
    width: 450px;
    margin-left: -80px;
  }
  .hero-area {
    height: 373px;
  }
}
@media only screen and (min-width: 992px) {
  .components-hero-img {
    margin-left: -60px;
    width: 550px;
  }
  .hero-area {
    height: 500px;
  }
  .components-hero-img-container {
    margin-top: auto;
    margin-bottom: auto;
    overflow: hidden;
    margin-right: -2.5rem;
    margin-left: -1.5rem;
  }
}

@media only screen and (min-width: 1350px) {
  .components-hero-img {
    margin-left: -60px;
    width: 650px;
  }
  .components-hero-img-container {
    margin-top: auto;
    margin-bottom: auto;
    overflow: hidden;
    margin-right: -2.5rem;
    margin-left: 1.5rem;
  }
}

