.opf_user_posts_title {
    text-align: center;
    margin-bottom: 30px;
}

.opf_user_posts_list_item {
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 5px 0 rgba(18,25,33,0.1);
    margin-bottom: 30px;
    background: white;
}

.opf_user_posts_list_item button {
    border: none;
    background: transparent;
    color: #127ca4;
    padding: 0;
}

.opf_upl_status_item {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.opf_upl_status_item > span {
    padding-right: 5px;
}

.opf_upl_status_item.trashed {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.opf_upl_status_item.draft {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
}

.opf_upl_status_item.published {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.opf_upl_title_trash {
    color: #555555;
}

.opf_upl_meta_container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.opf_upl_meta_item {
    padding: 5px;
}

.opf_upl_meta_item > span {
    padding-right: 5px;
}

.opf_upl_meta_item .fa-calendar {
    color: #0D8663;
}


.opf_upl_meta_item .fa-eye {
    color: #137DA4;
}

.opf_upl_meta_item .fa-comments {
    color: #C73079;
}

.opf_upl_edit_action,
.opf_upl_publish_action,
.opf_upl_trash_action,
.opf_upl_delete_action,
.opf_upl_restore_action {
    margin: 5px;
}

.opf_upl_trash_action > span,
.opf_upl_delete_action> span,
.opf_upl_restore_action > span {
    padding-right: 5px;
}

.opf_user_posts_list_item .opf_upl_edit_action {
    color: #0D8663;
}

.opf_user_posts_list_item .opf_upl_restore_action,
.opf_user_posts_list_item .opf_upl_publish_action {
    color: #137DA4;
}

.opf_user_posts_list_item .opf_upl_trash_action,
.opf_user_posts_list_item .opf_upl_delete_action {
    color: #C73079;
}

.opf_upl_form_action {
    display: flex;
    align-items: center;
}

.opf_upl_loader {
    border: 3px solid #555555;
    border-radius: 50%;
    border-left: 3px solid #f3f3f3;
    width: 16px;
    height: 16px;
    animation: opf_upl_spin 1s linear infinite;
}
  
@keyframes opf_upl_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}