/* Controller */

.block {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.block-border {
    margin: 10px 0 10px 0;
    border-style: groove;
    border-color: black;
    border-width: 1px;
}

.box {
    float: left;
    width: auto;
    margin: 5px;
    padding: 5px;
    background: #eee;
    box-sizing: border-box;
    min-height: 150px;
}

.box:last-child {
    margin-right: 10px;
}

.box:first-child {
    margin-left: 10px;
}

.box-header {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.box-content {
    display: flex;
    justify-content: flex-end;
    align-content: space-between;
}

.box-content-buttons{
    display: flex;
    justify-content: space-between;
    align-content: space-between;
}

.box-label {
    min-width: 190px;
    max-height: 16px;
}
.box-info {
    display: flex;
    justify-content: flex-end;
    font-size: small;
    color: #e91e63;
}

.box-input {
    min-width: 190px;
}

.box-select {
    min-width: 210px;
}

.box-sample {
    color: #9e9e9e;
}

.box-button {
    margin-top: 10px;
}

.box-button-sample {
    color: white;
    background-color: #00AAFF;
    border-color: #00AAFF;
    border-style: groove;
}

.scroller {
    width: 100%;
    min-height: 200px;
    height: 250px;
    overflow-y: scroll;
    scrollbar-color: rebeccapurple green;
    scrollbar-width: thin;
    resize: vertical;
}

.div-main {
    //margin: 10px 0 0 10px;
    //width:100%;
    float: left;
}

.div-sub {
    float: none;
    margin-bottom: 10px;
}
