body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color:  #fcfcfc;
  font-family: 'Roboto', sans-serif;
  margin: 0;

}

#notionContainer {
  margin: 30px;
}

.coverImage {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  
}

#headingContainer {
  position: relative;
  width: 100%;
}

.titleText {
  position: relative;
  z-index: 1; /* Ensures the text is above the image */
  padding-top: 180px;
  padding-left: 30px;
  font-size:3em;
}

.result-item {
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #5e5e5e;
    /*margin-bottom: 10px;*/
}

.result-item > div {
    box-sizing: border-box;
    margin-bottom: 5px;
}


.to_do {
  color: #ff0000;
}


p {
  font-family: 'Roboto', sans-serif;
}

blockquote {
  margin-left: 2em;
  color: #303030;
  padding-left: 1em;
  border-left: 4px solid #474747;
  min-height: 2em;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}

.callout {
  display: flex;
  align-items: center;
  border: 1px solid #5e5e5e;
  background-color: #d3dff8;
  padding: 10px;
}

.divider_line {
  width: 100%;
  height: 2px;
  background-color: #0d0d0d;
  margin: 10px 0;
}


.column_list {
  display: flex;
  justify-content: space-around;
}

.column_list .column {
  flex-grow: 1;    /* Grow to fill the container */
  flex-shrink: 1;  /* Shrink if necessary */
  flex-basis: 0;   /* Start with 0 width, grow and shrink from there */
  display: block;
  padding: 5px 20px;
  
}

.toggleContent {

}

summary {
  /*list-style: none; */
  cursor: pointer;
  display: flex;
  align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}
.custom-marker {
    /* Style your custom marker */
    margin-right: 5px;
    transition: transform 0.3s ease;
}

details[open] > summary > .custom-marker {
    transform: rotate(90deg);
}

summary:hover {
    cursor: pointer;
}

object {
    width: 100%;
    max-width: 350px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #616161;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e8e8e8;
}