#crp-post-list .ntdelbutton::before {
    background: none;
    color: #787c82;
    content: "\f153";
    display: block;
    font: normal 16px/20px dashicons;
    height: 20px;
    text-align: center;
    width: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#crp-post-list .ntdelbutton:hover:before {
    color: #d63638;
}

/* Drag and drop styling */
#crp-post-list {
    margin-top: 5px;
}

#crp-post-list li {
    cursor: move;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid #dcdcde;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

#crp-post-list li:hover {
    border-color: #8c8f94;
}

.crp-drag-handle {
    color: #787c82;
    margin-right: 5px;
    cursor: move;
}

.crp-drag-handle:hover {
    color: #2271b1;
}

.crp-sortable-placeholder {
    border: 1px dashed #b4b9be;
    background: #f8f8f8;
    height: 35px;
    margin-bottom: 5px;
}

a.crp_button {
    padding: 10px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    transition: all 0.3s ease 0s;
    margin-right: 10px;
    display: inline-block;
}

a.crp_button:hover {
    box-shadow: 3px 3px 10px #666;
}

a.crp_button.crp_button_green {
    color: #fff;
    background: #008000;
    border: 1px solid #003400;
}

a.crp_button.crp_button_green:hover {
    color: #fff;
    background: #006400;
}

a.crp_button.crp_button_red {
    color: #fff;
    background: #d63638;
    border: 1px solid #b92c2e;
}

a.crp_button.crp_button_red:hover {
    color: #fff;
    background: #b92c2e;
}

a.crp_button.crp_button_blue {
    color: #fff;
    background: #032075;
    border: 1px solid #001f5b;
}

a.crp_button.crp_button_blue:hover {
    color: #fff;
    background: #001f5b;
}

a.crp_button.crp_button_gold {
    color: #000;
    background: #FFBD59;
    border: 1px solid #FFA500;
}

a.crp_button.crp_button_gold:hover {
    color: #000;
    background: #FFA500;
}

/* Reindexing styles */
.dashicons.spin {
    -webkit-animation: crp-spin 2s infinite linear;
    animation: crp-spin 2s infinite linear;
}

@-webkit-keyframes crp-spin {
    0% {
        -webkit-transform: rotate( 0deg );
        transform: rotate( 0deg );
    }
    100% {
        -webkit-transform: rotate( 360deg );
        transform: rotate( 360deg );
    }
}

@keyframes crp-spin {
    0% {
        -webkit-transform: rotate( 0deg );
        transform: rotate( 0deg );
    }
    100% {
        -webkit-transform: rotate( 360deg );
        transform: rotate( 360deg );
    }
}

#crp-reindex-progress-container {
    background-color: #f0f0f1;
    border: 1px solid #c3c4c7;
    margin: 10px 0;
    overflow: hidden;
    padding: 10px;
}

#crp-progress-bar {
    background-color: #2271b1;
    height: 100%;
    -webkit-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
    width: 0;
}

#crp-reindex-status {
    color: #3c434a;
    margin: 10px 0;
}

#crp-reindex-status.error {
    color: #d63638;
}

#crp-reindex-status.success {
    color: #00a32a;
}

/* Copy to clipboard button */
.crp-code-wrapper {
    position: relative;
}

.crp-code-wrapper pre {
    margin: 0;
    white-space: pre-wrap;
}

.crp-code-wrapper code {
    display: block;
}

.crp-copy-button {
    position: absolute;
    top: 1px;
    right: 1px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #2271b1;
    transition: color 0.1s ease-in-out;
}

.crp-copy-button:hover {
    color: #135e96;
}

.crp-copy-button.copied {
    color: #00a32a;
}