body {
    display: flex;
    flex-direction: column;
    margin: 0px 0px;
    align-items: center;
}

.title-bar {
    width: 100%;
    height: 50px;
    background-color: #0d3e69;
    display: flex;
    color: white;
    align-items: center;
    margin: 0;
    padding: 5px 10px;
}

.title-icon {
    width: 32px;
    height: 32px;
    margin: 0px 5px;
    background-color: white;
    border-radius: 5px;
}

.title-text {
    font-weight: bold;
    font-size: 12pt;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.content-item {
    display: flex;
    margin: 10px 0;
    padding: 10px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    line-height: 22pt;
    background-color: #ededed;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.contact-row {
    display: flex;  
    flex-wrap: wrap;
    justify-content: center;
}

.image-width {
    width: 100%;
    height: auto;
}

dialog {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for the backdrop when it's a modal */
dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Styles for screens larger than or equal to 768px */
@media (min-width: 860px) {

    .main-content {
        width: 860px;
    }

    .content-item {
        display: flex;
    }

    .image-width {
        min-width: 860px;
    }
}