.my-window-component {
    position: absolute;
    background-color: #fff;
    z-index: 500;
    width: 350px;
    max-width: 95%;
    max-height: 100%;
    min-width: 320px;
    border: 1px solid #ccc;
    padding: 2px;
}

.my-window-component-header {
    text-align: center;
    padding: 5px;
    position: relative;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
}

.my-window-component-header-title {
    font-weight: bold;
}

.my-window-component-header-close {
    position: absolute;
    right: 5px;
    top: 5px;
}

.my-window-component-content {
    padding: 10px;
}

.my-window-component-footer {
    padding: 10px;
}

.my-window-component-footer-button {
    padding: 10px;
}

.my-window-component-footer-button-ok {
    padding: 10px;
}

.my-window-component-content-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}