.sizes-tbl-container {
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
    max-width: 100%;
}

.sizes-tbl {
    max-width: 100%;
    border-collapse: collapse;
    color: #333;
    border-radius: .4em;
    display: block;
    overflow: auto;
}

.sizes-tbl thead {
    border-top: none;
    background: #428bca;
    color: #fff;
}

.sizes-tbl tbody tr:nth-child(odd) {
    background-color: #ebf3f9;
}

.sizes-tbl th,
.sizes-tbl td {
    padding: 10px !important;
    text-align: center;
    display: table-cell;
}

.sizes-tbl td:first-child {
    margin-top: .5em;
}

.sizes-tbl td:last-child {
    margin-bottom: .5em;
}

.sizes-tbl td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    display: none;
    color: #000;
}

.sizes-tbl tr {
    border-color: #bfbfbf;
}

.sizes-tbl td {
    cursor: pointer;
}

.sizes-tbl-container-delete {
    padding: 16px;
}

.history-entry {
    cursor: pointer;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    color: #000;
}

.history-entry h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.history-entry .details {
    display: flex;
    align-items: center;
}

.history-entry .details * {
    margin-right: 5px;
}

.history-entry .details .octicon {
    fill: gray;
    margin-left: 5px;
}

.addCutSizesForm {
    padding: 5px;
    padding-bottom: 15px;
    border: 2px solid gray;
    border-radius: 10px;
}

.addCutSizesForm .section {
    display: flex;
    justify-content: space-around;
}

.addCutSizesForm .nice-form-group {
    width: 30%;
}

.addCutSizesForm .section .btn {
    align-self: center;
    justify-self: flex-end;
}

.draft-capsule {
    background-color: #10b981af;
    border-radius: 7px;
    padding-left: 3px;
    padding-right: 3px;
}

.autosaved-capsule {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: white;
    color: white;
    text-align: center;
    border-radius: 7px;
    padding: 5px;
    color: #000;
    display: flex;
    align-items: center;
}