.alpha-patcher {
    .alpha-admin-panel-body {
        flex-direction: row;
        align-items: flex-start;
    }
}

.alpha-patches-changelog-wrapper,
.alpha-patches-table-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .alpha-patches-changelog-wrapper,
    .alpha-patches-table-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }    
}

.alpha-patches-changelog-wrapper {
    margin-left: 20px;
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    border: 1px solid #f2f3f5;

    h4 {
        margin: 0;
        padding: 15px 20px;
        font-size: 14px;
        background-color: #f2f3f5;
    }
}

.alpha-patch-log {
    display: flex;
    align-items: flex-start;
    padding: 20px 20px;
    font-size: 13px;
    background-color: #fff;
    &:nth-child(2n+1) {
        background-color: #f2f3f5;
    }

    .alpha-patch-version-date {
        margin-right: 10px;
        font-weight: 500;
        color: #222;
        &::after {
            content: ':';
        }
    }

    svg {
        margin-top: -1px;
        margin-right: 5px;
    }

    ul {
        margin: 0;
        color: #666;

        li {
            margin-bottom: 0;
            &:not(:last-child) {
                margin-bottom: 10px;    
            }
        }
    }

    label {
        min-width: 80px;
    }
}

.alpha-patches-table-wrapper {
    position: sticky;
    top: 50px;

    h4 {
        margin: 0 0 10px;
        text-align: left;
    }

    .apply-alert {
        margin: 0 0 20px;
    }
}
.alpha-patch-table {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    border: 1px solid #f2f3f5;
    border-spacing: 0;

    th {
        padding: 15px;
        background-color: #f2f3f5;
    }
    td {
        padding: 15px;
        font-size: 14px;
    }
    tr:nth-child(2n) {
        background-color: #f2f3f5;
    }

    th:last-child {
        width: 200px;
    }
}

.alpha-important-note {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 3px;
    background: #666;
    color: #fff;
}

.alpha-patch-applied {
    opacity: .5;
}

#patcher-tbody { position: relative; }
#patcher-tbody i.alpha-ajax-loader { left: 50%; width: 50px; height: 50px; border-radius: 50px; }
#patcher-tbody.loading:before { content: ''; width: 100%; height: 100%; position: absolute; background-color: #ffffff8c; }