@font-face {
    font-family: 'Lato';
    src: url('./font/Lato-Regular.woff2') format('woff2'),
        url('./font/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.ht-page__content{
    width: 100%;
}

iframe{
    border: none;
}

body{
    font-family: Lato;
}

.incident-wrapper{
    border-radius: 0 0 5px 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.incident-wrapper + .incident-wrapper{
    margin-top: 15px;
}

.incident-header{
    color: #ffffff;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
}
.incident-title{
    font-size: 26px;
}
.incident-date{
    margin-top: 5px;
    float: right;
}
.incident-description{
    padding: 10px;
}

.incident-link{
    color:white;
    text-decoration: none;
    transition: color .15s;
}
.incident-link:hover{
    color:#ccddec;
}

.incident-body{
    padding: 10px;
    transform-origin: top;
    transition: transform .5s ease;
}
.incident-body.collapsed{
    height: 0;
    padding-bottom: 25px; 
    overflow: hidden;
}
.incident-body.expanded{
    height: auto;
}

.incident-introduction{
    padding: 10px;
    padding-bottom: 0px;
    margin-top: 0px;
}

.expand-collapse-button{
    padding-left: 10px;
    color: #E96E8E;
    text-align: right;
    width: 100%;
    text-decoration: underline;
    transition: color .15s;
}
.expand-collapse-button:hover{
    cursor: pointer;
    color: #f6a2b9;
}

.incident-added::before{
    content: "The following feature(s) have been added:";
}
.incident-improved::before{
    content: "The following feature(s) have been improved:";
}
.incident-fixed::before{
    content: "An overview of bugs that were fixed:";
}