
        /* GOPRS Items Manager Frontend Styles */
        .goprs-frontend-container {
            margin: 20px 0;
        }
        
        .goprs-search-container {
            margin-bottom: 20px;
        }
        
        .goprs-search-input {
            width: 100%;
            max-width: 300px;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .goprs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .goprs-table th, .goprs-table td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        
        .goprs-table th {
            background: #f5f5f5;
        }
        
        .goprs-status-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .goprs-status-in-review {
            background: #f0ad4e;
            color: white;
        }
        
        .goprs-status-pass-to-vote {
            background: #5bc0de;
            color: white;
        }
        
        .goprs-status-add-to-website {
            background: #5cb85c;
            color: white;
        }
        
        .goprs-status-decline {
            background: #d9534f;
            color: white;
        }
        
        .goprs-item-details {
            display: none;
            padding: 15px;
            background: #f9f9f9;
            border-top: 1px solid #ddd;
        }
        
        .goprs-item-description, .goprs-item-notes {
            margin-bottom: 10px;
        }
        
        .goprs-item-description h4, .goprs-item-notes h4 {
            margin-bottom: 5px;
        }
        
        .goprs-toggle-details {
            cursor: pointer;
            color: #0073aa;
        }
        
        .goprs-loading {
            text-align: center;
            margin: 20px 0;
        }
        
        .goprs-hidden {
            display: none !important;
        }
        
        .goprs-no-results {
            padding: 20px;
            text-align: center;
            background: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* Vote cell styles */
        .goprs-vote-cell {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            align-items: center;
        }
        
        .goprs-vote-select {
            width: 130px;
            padding: 6px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .goprs-vote-btn {
            padding: 6px 10px;
            background: #0073aa;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .goprs-vote-btn:hover {
            background: #005f8a;
        }
        
        .goprs-vote-message {
            width: 100%;
            margin-top: 5px;
            font-size: 12px;
            font-style: italic;
        }
        
        .goprs-vote-error {
            color: #d9534f;
        }
        
        .goprs-loading-vote {
            opacity: 0.7;
            pointer-events: none;
        }
        
        @media screen and (max-width: 768px) {
            .goprs-table {
                display: block;
                overflow-x: auto;
            }
        }
        