.album-order-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f8f8;
    justify-content: space-between;
}

.album-order-panel__group {
    display: flex;
    align-items: center;
}

.album-order-panel__buttons {
    display: inline-flex;
}

.album-order-panel__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 34px;

    border: 1px solid #ccc;
    background: #fff;
    color: #555;

    text-decoration: none;

    transition:
        background-color .15s ease,
        color .15s ease,
        border-color .15s ease;
}

.album-order-panel__button:first-child {
    border-radius: 4px 0 0 4px;
}

.album-order-panel__button:last-child {
    margin-left: -1px;
    border-radius: 0 4px 4px 0;
}

.album-order-panel__button:hover {
    background: #f0f0f0;
    color: #222;
}

.album-order-panel__button.is-active {
    position: relative;
    z-index: 1;

    background: #ce242c;
    border-color: #ce242c;
    color: #fff;
}

.album-order-panel .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}