:host {
    width: 100%;
    height: 100%;
}

.header {
    background-color: rgb(32, 42, 68);
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
}

.header img {
    height: 50px;
    margin-right: 10px;
}

.header img:first-child {
    margin-right: auto;
}

.header img:last-child {
    margin-left: auto;
}

.container-box {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .container-box {
        width: 100%;
    }
}

.hidden {
    display: none;
}

.description-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.extraTopPadding {
    padding-top: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.accordion-button {
    font-size: x-large;
}

table.epObjectsTable {
    border-style: groove;
    width: 98%;
}

table.epObjectsTable thead th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
    max-width: 300px;
}

.accordion-button-active {
    background-color: #007bff;
    color: white;
}
