.pc-frontend-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pc-frontend-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.pc-frontend-filters {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pc-frontend-filters input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.pc-frontend-filters .button {
    padding: 10px 20px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pc-frontend-filters .button:hover {
    background: #135e96;
}

.pc-frontend-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pc-frontend-table table {
    width: 100%;
    border-collapse: collapse;
}

.pc-frontend-table th {
    background: #2271b1;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.pc-frontend-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.pc-frontend-table tr:hover {
    background: #f9f9f9;
}

.pc-frontend-table .pc-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.pc-frontend-table .pc-badge-pendiente {
    background: #fef5e7;
    color: #f39c12;
}

.pc-frontend-table .pc-badge-entregado {
    background: #eafaf1;
    color: #27ae60;
}

.pc-frontend-table .pc-badge-notificado {
    background: #ebf5fb;
    color: #3498db;
}

@media (max-width: 768px) {
    .pc-frontend-filters {
        flex-direction: column;
    }
    
    .pc-frontend-filters input,
    .pc-frontend-filters .button {
        width: 100%;
    }
    
    .pc-frontend-table {
        overflow-x: auto;
    }
}
