.edit-icon {
    width: 16px;
    height: 16px;
    color: #666;
    transition: color 0.2s ease;
}

.edit-icon:hover {
    color: #0073aa;
}
.contributor-dashboard {
    max-width: 100%;
    margin: 0 auto;
}
.contributor-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}
.contributor-dashboard-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}
.contributor-filter-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contributor-status-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contributor-status-filter label {
    font-weight: 500;
    color: #495057;
}
.contributor-status-filter select {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 0px;
    background: white;
    font-size: 14px;
}
.clear-filters-btn {
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.clear-filters-btn:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
}
.contributor-posts-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}
.contributor-post-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e1e5e9;
    border-radius: 0px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.contributor-post-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contributor-post-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 0px;
    overflow: hidden;
    background: #f8f9fa;
}
.contributor-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contributor-post-content {
    flex: 1;
    min-width: 0;
}
.contributor-post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.contributor-post-title a, 
h3.contributor-post-title {
    color: #2c3e50;
    text-decoration: none;
}
.contributor-post-title a:hover {
    color: #3498db;
}
.contributor-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}
.contributor-post-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.status-draft { background: #ffeaa7; color: #2d3436; }
.status-pending { background: #fab1a0; color: #2d3436; }
.status-private { background: #a29bfe; color: white; }
.status-pitch { background: #74b9ff; color: white; }
.status-assigned { background: #fd79a8; color: white; }
.status-in-progress { background: #fdcb6e; color: #2d3436; }
.status-pending-review { background: #fab1a0; color: #2d3436; }
.status-reject { background: #e84393; color: white; }
.status-revise { background: #e17055; color: white; }
.status-approved { background: #00b894; color: white; }
.contributor-feedback-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #e17055;
}
.contributor-post-excerpt {
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
    margin-bottom: 8px;
}
.contributor-pagination {
    text-align: center;
    margin-top: 30px;
}
.contributor-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 0px;
    border: 1px solid #dee2e6;
}
.contributor-pagination .page-numbers:hover,
.contributor-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}
@media (max-width: 768px) {
    .contributor-dashboard-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .contributor-filter-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .contributor-post-item {
        flex-direction: column;
    }
    .contributor-post-thumbnail {
        width: 100%;
        height: 200px;
    }
}

.contributor-dashboard-header h3 {
    color: black;
}