/* Global themes */
@import url(corporate_colors.css);

.blue-divider-box {
    padding-left: 3em;
    min-height: 1em;
    
    color: var(--light-text);
    background-color:var(--dark-blue) ;
    
    align-content: center;
}

.overlay-box-transparent {
  /*Background box for the AI Summary and the header*/ 
  position: relative;
  margin-top: 20px;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%; 
  height: auto; 
  background-color: none;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 15px;
}

.overlay-box-white-impressum {
  /*Background box for the actual AI Summary*/
  margin: 0px;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  justify-content: space-between;
  width: 65%; 
  height: auto; 
  background-color: white;
  align-items: center;
}

#impressum-header {
    font-size: 24px;
    padding-left: 20px;
}

.grid-2x1 {
  /*Feedback area in the AI Summary*/
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto; 
  width: 100%;
  align-items: center;
  height: auto;
  text-align: left;
  padding-left: 20px;
  padding-top: 20px;
  gap: 5px;
}

.impressum-headers {
  font-size: 20px;
}

.impressum-text {
  font-size: 16px;
  line-height: 1.4285em;
}


.name {
    font-size: larger;
}

.role {
    padding-bottom: 0.5em;
}

.contact_box {
    padding-top: 2em;
}

.hor_divider {
    height: 1px;
    width: 100%;
    background-color: var(--grey);
    margin-top: 2em;
}   
