
#summaryContainer {
    
}
#summary h2 {
    text-align: center;
}



#summary h3 {
    font-size: 17px;
    margin: 0px;
    text-align: center;
    font-weight: 500;
}

#summary h4 {
    font-size: 15px;
    text-align: left;
    margin: 0px;
    font-weight: 600;
    display: none;
}

#summary ul {
    list-style: none;
    text-align: left;
    padding-left: 0px;
    padding-bottom: 20px;
}

#summary li  {
    display: inline-flex;
    text-align: left;
}

#summary li .glyph {
        margin-top: 0em;
    font-size: 18px;
    padding-right: 14px;
    min-width: 77px;
}

.highlighted-word {
    font-weight: 500;
    cursor: pointer;
}

#summary .glyph {
    
}

#summary {
    padding-top: 0px;
    margin-top: 20px;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    text-align: left;
    font-weight: 300;
}

.summaryWrapper {
width: 100%;
}

.summaryOrChatWrapper {
    background: var(--background-white);
    padding: 4px 0px;
    display: none;

}

.summaryWrapperButton {
 background: var(--background-white);    width: 90px;
}

.summaryWrapperButton.is-active {
    background: var(--background-black);
   color: var(--background-white);
}


.askQuestion{
 background: var(--background-white);}

.askQuestion.active {
    background: var(--background-black);
   color: var(--background-white);
}

.sticky {
    position: sticky;
    top: 50px; /* Height of your top bar */
    z-index: 10; /* Optional: to ensure it stays above other content */
}

#summaryButtons {
    display: flex;
    flex-direction: column;
}


#summary .glyph {
  
}

.summaryPlanetTitle > .glyph:first-of-type {
    margin-top: 0em;
}

.summaryPlanetTitle {
    text-align: center;
    padding: 10px;
    border-top: solid 1px;
    border-bottom: solid 1px;
 background: var(--background-white);    
 border: solid 1px;
 border-color: var(--border-grey);
    margin: 2px 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    color: var(--background-black);
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border-radius: 8px 8px 8px 8px;
    z-index: 1;
}

.summaryPlanetTitle::after {
    content: '';
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('svg/arrow-open.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px; /* Space between text and icon */
    transition: transform 0.3s ease; /* Smooth transition for rotation */
        opacity: var(--icon-opacity);
    filter: var(--icon-filter);

}


.summaryPlanetTitle.is-active {
    display: flex;          /* Use flexbox layout */
    flex-direction: column; /* Stack children vertically */
    align-items: center;    /* Center-align items horizontally */
    font-size: 18px;
    font-weight: 600;
    border: solid 1px;
    border-color: var(--border-grey2);
    box-shadow: var(--box-shadow);
    border-radius: 8px 8px 0px 0px;
}

.summaryPlanetTitle.is-active::after {
    transform: rotate(180deg); /* Rotate the icon 180 degrees */
    position: relative;
    top: -90px;
    left: 46%;
}

.summaryPlanetTitle .title-text {

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}    
.summaryPlanetTitle.is-active .title-text {

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    text-align: left;

}

.summaryPlanetTitle .glyph {
    flex-shrink: 0;
    font-size: 18px;
    position: relative;
    top: 2px;
    font-weight: 100;
    padding-right: 9px;
    letter-spacing: 1px;
    transition: transform 0.3s ease; /* Smooth transition for rotation */

}

.summaryPlanetTitle.is-active .glyph {
    font-size: 29px;
    margin-top: 0.5em;
    text-align: center;
    order: -1;              /* Make sure the glyph appears above the text */
    margin-bottom: 0.5em;   /* Provide some space between the glyph and the text */
}


.aspectListItem {
    border: solid 1px;
    border-color: var(--border-grey2);
    border-radius: 5px;
    padding: 7px;
    margin-top: 4px;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.aspectListItem::after {
    content: '';
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('svg/arrow-open.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px; /* Space between text and icon */
    transition: transform 0.3s ease; /* Smooth transition for rotation */
        opacity: var(--icon-opacity);
    filter: var(--icon-filter);

}

.aspectListItem.is-active::after {
    transform: rotate(180deg); /* Rotate the icon 180 degrees */
    position: relative;
    
}


#saveInterpretationButton {
text-align: center;
}

#interpretationButton {
    text-align: center;
    display: block;
}

.morePlanetInfoBtn {
    justify-content: flex-start;
    text-align: center;
    padding: 10px;
    border-top: solid 1px;
    border-bottom: solid 1px;
 background: var(--background-white);    
 border: solid 1px;
 border-color: var(--border-grey);
    margin: 2px 18px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    color: var(--background-black);
    align-items: center;
    transition: 0.3s;
    border-radius: 8px;
}

.morePlanetInfoBtn::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(svg/arrow-open.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: absolute;
    right: 32px;
        opacity: var(--icon-opacity);
    filter: var(--icon-filter);

}

.morePlanetInfoBtn .glyph {
    padding-right: 3px;
    order: -2;
    font-size: 18px;
}

.morePlanetInfoBtn  .signGlyph {
  order: -1;
  padding-right: 19px;
  font-size: 18px;
  padding-left: 7px;
}

.morePlanetInfoBtn:hover {
    background-color: var(--medium-grey);
  }

#summaryButtonsContainer {
    display: flex;
    flex-direction: column;
}

.summaryButtonsBtn {
     
    font-size: 17px;
    padding: 15px 15px;
    margin: 3px 14px;
    cursor: pointer;
    background-color: var(--background-white);
    border-radius: 8px;
    transition: background-color 0.3s;
    text-align: left;
    border: solid 1px var(--border-grey);
}

/*.summaryButtonsBtn span::after {

    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(svg/arrow-open.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    transition: transform 0.3s ease;
        opacity: var(--icon-opacity);
    filter: var(--icon-filter);
    position: absolute;
    right: 28px;
    bottom: -190px;
}


.summaryButtonsBtn.is-active span::after {
    transform: rotate(180deg);
    position: relative;
    top: -66px;
    left: 93%;
}*/

.summaryButtonsBtn:hover {
    background-color: var(--medium-grey);
  }

  .summaryButtonsBtn .chartName {
    text-transform: capitalize;

  }


.summaryButtonsContent {

}

#readMoreBtn {
    display: none;
}

.summaryButtonsBtn .glyph-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 19px;
    padding: 8px 10px 8px 0px;
    margin-top: 5px;
}

.summaryButtonsBtn.is-active .glyph-container {
    display: none;
}

.assistantMessageContainer {
    
    /* padding-left: 10px; */
    border-bottom: solid 1px ;
    box-shadow: var(--box-shadow);
    margin: 0px;
    border-radius: 0px 0px 10px 10px;
    border-left: solid 1px;
    border-right: solid 1px ;
    border-block-start: revert-layer;
 background: var(--background-white);
 border-color: var(--border-grey2);
}

.assistantMessageContainer.is-active {
    padding: 13px;
    padding-top: 17px;
    /* padding-left: 10px; */
    border-bottom: solid 1px;
    box-shadow: var(--box-shadow);
    margin: 0px 4px 10px 4px;
    border-radius: 0px 0px 10px 10px;
    border-left: solid 1px;
    border-right: solid 1px;
    border-color: var(--border-grey2);
    border-block-start: revert-layer;
 background: var(--background-white);
 color: var(--background-black);
}