/* bp-post-verification.css */

/* Style for dropzone */
.dropzone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropzone.dragover {
    background-color: #f0f0f0;
}

/* Style for post cover preview */
#post-cover-preview img {
    margin-top: 10px;
    max-width: 150px;
    height: auto;
}

/* Status button styles */
.status-button {
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
}

.status-pending {
    background-color: #f0ad4e;
}

.status-published {
    background-color: #5cb85c;
}

.status-rejected {
    background-color: #d9534f;
}

.status-trashed {
    background-color: #777;
}

.status-other {
    background-color: #5bc0de;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 10px;
}

table th {
    background-color: #f9f9f9;
    text-align: left;
}