img.transparent-logo {
    max-width: 20vh;
    padding: 5px
}

div.logo-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.summaries {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.summary {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    border-radius: 8px;
    background-color: Azure;
    display: flex;
    flex-direction: column;
    margin: 20px;
    max-width: 600px;
    width: 600px;
}

#total-summary {
    font-weight: bold;
}

.summary-text{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

.summary-text div {
    padding: 5px;
    font-size: 1.1rem;
}
.summary-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.invoice-number {
    color: var(--wwave-blue);
}
div.invoice-total {
    padding-top: 30px;
}

.invoice-actions {
    display: flex;
    flex-direction: row-reverse;

}
.invoice-actions button {
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 10px 10px;
    margin-left: 15px;
    margin-top: 15px;
    border-style: none;
}

.view-pdf{
    background-color: azure;
    color: var(--wwave-blue);
}

a.button {
    color: inherit;
    text-underline: none;
}

@media(max-width: 1000px) {
    .summary div {
        font-size: 1.9rem;
    }
    .summary {
        max-width: 90%;
    }
    .invoice-actions button {
        font-size: 1.9rem;
    }
}